我試圖用這個教程構建一個RSS提取程序的擴展方法「sendRequest將」 -錯誤 - 無法調用未定義
http://www.lifehacker.com.au/2011/11/how-to-build-a-chrome-extension
但我想這是一個有點老谷歌已經做了一些改動。下載的擴展程序根本不起作用。我已經解決了許多錯誤,使工作,但即時stucked在此:
Uncaught TypeError: Cannot call method 'sendRequest' of undefined
這是我popup.html文件錯誤所在。
function fetch_feed() {
chrome.extension.sendRequest({'action' : 'fetch_feed', 'url' : 'http://spfc.terra.com.br/rss/news.xml'},
function(response) {
display_stories(response);
}
);
}
function display_stories(feed_data) {
var xml_doc = $.parseXML(feed_data);
$xml = $(xml_doc);
var items = $xml.find("item");
$('#popup').html('<img src="logo.png" id="logo" onclick="open_item(\'http://spfc.terra.com.br/\'); window.close();" /><br clear="all" />');
items.each(function(index, element) {
var post = parse_post(element);
var item = '';
var class2 = '';
if (index >= localStorage['unread_count']) {
// // console.log('visited');
item += '<div class="post read">';
}
else {
item += '<div class="post">'
}
item += '<span class="tag">' + post.tag + '</span>\
<a href="' + post.url + '">\
<div id="' + post.id + '" class="item" onclick="open_item(\'' + post.url + '\');">\
<img src="' + post.img + '" width="107" height="60" />\
<h4>' + post.title + '</h4>\
<span class="description">' + post.description + '...</span>\
</div>\
</a>';
item += '</div>';
$('#popup').append(item);
});
}
通過我也曾background.html錯誤的方式,在這一部分:
function fetch_feed(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(data) {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
var data = xhr.responseText;
callback(data);
} else {
callback(null);
}
}
}
// Note that any URL fetched here must be matched by a permission in
// the manifest.json file!
xhr.open('GET', url, true);
xhr.send();
}
function onRequest(request, sender, callback) {
if (request.action == 'fetch_feed') {
fetch_feed(request.url, callback);
}
}
chrome.extension.onRequest.addListener(onRequest);
是同樣的錯誤,但與另一個屬性:
Uncaught TypeError: Cannot read property 'onRequest' of undefined
附:我試圖在詢問和找不到解決方案之前找到解決方案。等待一些幫助來解決它。
感謝您的回答。我用sendMessage替換了sendRequest,用onMessage替換了onRequest(在background.html中),並且我得到了相同的錯誤: **未捕獲的TypeError:無法調用未定義的**'sendMessage'方法** – 2013-03-26 19:34:23
@ThiagoDosReis對不起,我寫了一個錯誤的函數應該是'chrome.runtime'而不是chrome.extension for'sendMessage'和'onMessage' – frisco 2013-03-27 10:46:30