post数据以后页面没有刷新
$.ajax({url:"http://127.0.0.1:3000/test",data:{"hello":"abc"}},function(d){alert(d)});
});
我用ajax发一个data,然后用express这么写:
//.../routes.js
exports.test = function(req,res){
console.log(req.query);
res.send(200,'hello world:\n'+req.query);
}
在服务器端看到
{ hello: 'abc' }
GET /test?hello=abc 200 1ms - 28b
但是在客户端就没有 hello world出现 这是为什么