这是我在index.js文件中唯一的代码:
var Request = require("sdk/request").Request;
Request({
url: "https://api.zipbooks.com/",
content: {q: "test"},
onComplete: function (response) {
console.log(response.text);
}
}).post();
它没有记录,状态为0,statusText未定义,
如果你好https://api.zipbooks.com/,你会看到一条消息。为什么Firefox没有得到它?
PS。如果我将网址更改为http://example.com/xampp/splash.php,则会收到回复。