Chrome扩展程序 - GCM通知会引发错误,但有信息吗?

时间:2016-02-28 02:12:48

标签: javascript google-chrome-extension promise

我的Chrome扩展程序不断向此函数抛出错误

 function messageReceived(message) {
  // A message is an object with a data property that
  // consists of key-value pairs.

  // Pop up a notification to show the GCM message.
  chrome.notifications.create(getNotificationId(), {
    title: message.data.name,
    iconUrl: 'assets/img/cat.jpg',
    type: 'basic',
    message: message.data.prompt,
    buttons : [
    { title: "Accept" },
    { title: "Reject" }
    ]
  }, function() {});
}

错误:

  

运行notifications.create时未经检查的runtime.lastError:缺少一些必需的属性:type,iconUrl,title和message。       在messageReceived

然而,所有这些实际上都存在。错误到达每次我添加以下功能

function notificationBtnClicked(notification, ibtn) {
  console.log(notification)
  console.log(ibtn)

  if (ibtn==0) {
    chrome.storage.local.get("name", function(name){
      chrome.storage.local.get("email",function(email){
          //call other users
          var email = email
          var name = name
          $.ajax({
               url: 'some api',
               data:'{email:email, name:name}',
               ajax:true,
               success: function(result)
               {
                 alert(result);
               }
             });
      });
    })

  }else {
    //snooze
  }
}

但是,我不明白这是什么问题。我通过下载一些镀铬扩展程序来检查chrome.storage,它可以让你查看它和那里。

为什么错误不正确? :/

chrome.gcm.onMessage.addListener(messageReceived);
chrome.notifications.onButtonClicked.addListener(notificationBtnClicked);

1 个答案:

答案 0 :(得分:0)

确保所有必需的通知属性都有其值。 ' iconUrl '您使用的必须是'notification.create'方法所需的扩展名.crx文件中与资源相关的数据URL,blob URL或URL。请注意您使用的Chrome版本。

此外,请添加回调并检查chrome.runtime.lastError

function callback() {
if (chrome.runtime.lastError) {
console.log(chrome.runtime.lastError.message);
} else {
// Tab exists
}
}