我在node.js
中编写了一个HTTP服务器var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World ' + request.url + '\n\n');
console.log(request.url);
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
这应该来自phonegap / cordova app的请求:
function testnodejs() {
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null) {
alert ("Your webbrowser does not support HTTP Request");
return;
}
var url="http://domain.com:8124/i.t?hi=hi!";
console.log(url);
document.getElementById("maindiv").innerHTML = "<div id='itembrd' onClick=\"testnodejs();\"><div id='item'>Nodetest</div></div>";
xmlHttp.open("GET", url, true)
xmlHttp.onreadystatechange=function() {
document.getElementById("maindiv").innerHTML += xmlHttp.status + " ";
if (xmlHttp.readyState==4) {
console.log(xmlHttp.responseText);
document.getElementById("maindiv").innerHTML += xmlHttp.responseText + '<br />\n';
}
}
xmlHttp.send(null)
}
在config.xml中我有
<access origin=".*" />
请求返回readyState 4,但当你期望200时,状态也会返回0.任何人都有线索?
答案 0 :(得分:3)
所以,我把它放在一边几天。带着新鲜的放弃回头并修复它。问题出在node.js服务器端,它没有返回200但是0.这是因为允许来源。我这样重写了响应标题:
response.writeHead(200, {
'Content-Type': 'text/plain',
'Access-Control-Allow-Origin' : '*'
});
瞧,瞧!探戈!
现在我有一个非常轻量级的解决方案来处理来自cordova / phonegap应用程序的XHR请求。