我想在本地测试一个ajax调用。这是可能的,还是我需要使用像xampp这样的服务器?它总是说ajax调用的来源是null,这是违反原始政策的。
本地客户端:C:/index.html
httpRequest.open("GET", "http://localhost:4000"
+ "?data="
+ value, true);
httpRequest.send();
端口4000上的节点js服务器
server = http.createServer(function(req, res) {
res.writeHead(200, {
'Content-Type': 'text/plain',
'Access-Control-Allow-Origin': 'file:///C:/index.html'
});
});