为什么Edge扩展通知的“创建”未定义?

问题描述 投票:0回答:1

在Edge扩展中运行代码会引发TypeError,无法获取未定义或null引用的属性“create”。

我试过在弹出窗口和后台脚本中运行它。我在清单中有通知权限。我确实看到一些API需要在内容脚本中运行,但由于我没有使用标签或网页,我认为这不适用于我......?

表现:

{
  "name": "xxx",
  "author": "xxx", "version": "1.1",
  "options_page": "options.html",
  "background": {
    "scripts": ["jquery-3.3.1.min.js","background.js"], "persistent": true
  },
  "permissions": [
    "xxx",
    "background",
    "notifications",
    "storage"

  ],
  "offline_enabled": true,
  "browser_action": {
      "default_title": "xxx",
      "default_popup": "popup.html",
      "default_icon": "32.png"
  },
  "manifest_version": 2
}

背景脚本:

try{
    browser.notifications.create("test",{
    "type": "basic",
    "title": "Test",
    "iconUrl": "48.png",
    "message": "This is a test"
    });
}catch(e){
    alert(e);
}
notifications undefined microsoft-edge microsoft-edge-extension
1个回答
1
投票

根据您的描述,首先,您可以尝试将Edge浏览器升级到最新版本,然后尝试使用browser.notifications.create方法。

但是,在我看来,我更喜欢使用Web Notifications API显示通知,您可以检查this article

© www.soinside.com 2019 - 2024. All rights reserved.