我正在尝试从服务器获得响应,但我的状态为空。哪里出错了? 我想从脚本发送到Max4live Patch中的服务器。
var xhr = new XMLHttpRequest();
var url = 'myURL'
log("1");
xhr.open('PUT', url, true, 'myUser', 'myPass');
log("2");
xhr.setRequestHeader('Content-Type', 'application/json');
log("4");
xhr.send(JSON.stringify(JsonExport));
log("5");
log("Status: "+xhr.status+ " "+xhr.statusText);
if (xhr.status == 4) {
var userInfo = JSON.parse(xhr.responseText);
log("Status");
log(xhr.responseText);
log(userInfo);
} else {
log("Response");
log(xhr.responseText);
}
//log(xhr.responseType["json"]);
delete xhr;
我上线:log(“状态:”+ xhr.status +“”+ xhr.statusText): 状态:0 null ...我想从服务器获取一个json对象。任何的想法? 谢谢!
答案 0 :(得分:1)
您发出异步请求(请参阅xhr.open()
的第三个参数),并且在检查状态时您的请求未完成。
对于异步请求,您需要实现onreadystagechange
处理程序。
例如,请查看http://www.w3schools.com/ajax/ajax_xmlhttprequest_onreadystatechange.asp