这是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)};
}
})
};
});
}
错误。什么都没有警告。这是一个背景页面。
我该如何解决这个问题?
提前谢谢。