0
我想從sendResponse到chrome.runtime.sendMessage的反應,但它總是呈現不確定的,下面是我的代碼:沒有得到響應的Chrome extention
chrome.runtime.sendMessage(JSON.stringify(contact), function(response) {
console.log('Response: ', response); // This is showing undefined
});
chrome.runtime.onMessage.addListener(function(request, sender, sendResponse) {
contact.addContact(request, function() {
sendResponse({success: 'true'});
});
});
所以,當我通過sendResponse({成功:true})應該在chrome.runtime.sendMessage的回調函數中接收,但不是它顯示爲undefined。
是的工作,非常感謝... :) –