我正在使用 Ajax 调用将数据从客户端发布到节点服务器,并尝试在服务器端接收数据,对其进行操作(进行一些数据库查询),然后返回响应。
客户端代码:
$.ajax({
type: "post",
url: "http://localhost:8888/ajaxRequest",
dataType: "json",
data: {name: "Manish", address: {city: "BBSR", country: "IN"}}
}).done(function ( data ) {
console.log("ajax callback response:" + data);
});
服务器端 :
var port = 8888;
var server = http.createServer();
server.on('request', request);
server.listen(port);
function request(request, response) {
var store = '';
response.writeHead(200, {"Content-Type": "text/json"});
request.on('data', function(data) {
store += data;
});
request.on('end', function() {
console.log(store);
response.end(store);
});
}
问题:当我在请求结束函数中安慰“存储”变量时,我得到这样的结果:
name=Manish&address%5Bcity%5D=BBSR&address%5Bcountry%5D=IN
我只想在服务器端使用我在 Ajax 'data' 参数中发送的相同数据。我也试过了,queryString.parse, JSON.parse() 但没有帮助。我只希望我的输出为:
{name: "Manish", address: {city: "BBSR", country: "IN"}}