是否可以使用Firefox插件从特定网址读取传入的xhr响应? 什么时候可以这样做?
答案 0 :(得分:0)
假设您发送了请求,则只需分配一个回调函数。在此示例中,processResponse将接收结果。
function processResponse(xhr){
console.log("\nRESPONSE of " + xhr.responseText.length + " characters.\n");
console.log(xhr.responseText);
}
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
processResponse(xhr);
}
}
xhr.open ("post", "myphp.php", true);
var somePostData = "&command=print";
xhr.send (somePostData);