我正在开发一个firefox扩展,并在firefox扩展中重复 xhr.status === 0 错误我正在使用 firefox 31和addon sdk 1.17 ,而当我在chrome上尝试相同时它起作用了。我正在向网站发送 GET 请求以检索其 json文件,并且我已在package.json文件中添加了权限标记
enter code here
xhr.open("GET", "http://www.hackerearth.com/chrome-extension/events/", true);
xhr.send();
xhr.onreadystatechange = function () {
if(xhr.readyState===4){
if(xhr.status===200){
console.log(xhr.responseText);
var json = JSON.parse(xhr.responseText);
console.log(err+"the eerrrorr");
}else{
alert("Status is :"+xhr.status);
}
}
};