未捕获错误:尝试使用断开连接的端口对象

时间:2016-05-23 22:25:13

标签: javascript google-chrome-extension

这是Chrome扩展程序

我有一个函数检查PHP文件以查找要使用abc的消息。 PHP文件echo是一个JSON编码的对象,例如chrome.notifications.create

{"status":true,"message":"test message"}

运行时,输出显示function CheckRemoteNotifications(){ chrome.storage.sync.get("loggedInUser", function(data){ if(data.loggedInUser){ $.get("https://example.com/path/to/file.php", function(data){ if(data.status){ try{ chrome.notifications.create("rds"+Math.random(1000,1000000),{ type: "basic", iconUrl: chrome.runtime.getURL("icon-420x420.png"), title: "Alert", message: data.message, requireInteraction: true }); }catch(err){alert(err)}; } }) }; }); } 错误。什么都没有警告。这是一个背景页面。

我该如何解决这个问题?

提前谢谢。

0 个答案:

没有答案