原生ajax异步请求问题--3次握手

1 前端代码

 





2 后端代码

var http=require('http');

var app=http.createServer(function(req,res){
	res.writeHead(200,{"content-type":"text/plain","Access-Control-Allow-Origin":"*"});
	res.end("ccccc")
})


app.listen(8888,function(){
	console.log("server is running")
})
结果是:前端先console出3个fail在console出"ccccc"
            应为前端要3次握手之后才有数据返回


你可能感兴趣的:(webjs)