我正在创建一个Disqus通知程序Chrome扩展程序。这涉及到对disqus.com进行HTTP调用,但我无法通过AJAX调用 - Chrome给了我一个着名的NETWORK_ERR: XMLHttpRequest Exception 101
错误。
我在某处(不记得在哪里)知道Chrome会阻止来自解压缩扩展程序的跨域AJAX调用,所以我也尝试打包我的扩展程序 - 但结果相同。我也明白,除了后台页面之外,我不能从任何地方进行跨域AJAX。
的manifest.json:
{
"name": "Disqus notifier",
"version": "1.0",
"description": "Get notifications when you have new replies on your Disqus posts",
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background_page": "background.html",
"permissions": [
"http://*/*",
"https://*/*"
]
}
background.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="background.js"></script>
</head>
<body>
</body>
</html>
background.js:
function poll() {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = handleStateChange; // Implemented elsewhere.
xhr.open("GET", chrome.extension.getURL('http://disqus.com/api/3.0/messagesx/unread.json?user=<...>&api_key=<...>'), false);
xhr.send(null);
console.log(xhr.responseText);
}
function handleStateChange() {
if (this.readyState == 4) {
var resp = JSON.parse(this.responseText);
updateUi(resp);
}
}
function updateUi(json) {
console.log("JSON: ", json);
}
popup.html:
<html>
<head>
<title>Disqus notifier</title>
<script type="text/javascript">
function updateButtonClicked() {
chrome.extension.getBackgroundPage().poll();
}
</script>
</head>
<body>
<button type="button" onclick="updateButtonClicked()">Update</button>
</body>
</html>
xhr.send(null);
行记录101
错误。在事件处理程序handleStateChange
中,this.responseText
是一个空字符串,导致JSON.parse
失败并显示Unexpected end of input
。
所以:为了被允许进行跨域AJAX调用,我缺少什么?
答案 0 :(得分:7)
你的background.js中有错误....
xhr.open("GET", chrome.extension.getURL('http://disqus.com/api/3.0/messagesx/unread.json?user=<...>&api_key=<...>'), false);
......应该是......
xhr.open("GET", 'http://disqus.com/api/3.0/messagesx/unread.json?user=<...>&api_key=<...>', false);
chrome.extension.getURL用于获取扩展程序中文件的网址
http://code.google.com/chrome/extensions/extension.html#method-getURL
您可以从不仅仅是后台页面生成xhr请求(非常确定您的扩展中的任何页面,包括内容脚本)。
Chrome不会阻止来自解压缩扩展程序的xhr调用。