gpt4 book ai didi

json - Node 服务器接收 XmlHttpRequest

转载 作者:搜寻专家 更新时间:2023-11-01 00:18:54 24 4
gpt4 key购买 nike

我正在使用以下代码发送 session 描述(微小的 JSON 代码 - http://www.ietf.org/rfc/rfc2327.txt)。

function sendMessage(message) {
var msgString = JSON.stringify(message);
console.log('C->S: ' + msgString);
path = '/message?r=67987409' + '&u=57188688';
var xhr = new XMLHttpRequest();
xhr.open('POST', path, true);
xhr.send(msgString);
}

我不确定如何在我的 Node.js 服务器上检索 JSON。

最佳答案

这是一个可以在 node.js 中处理 POST 请求的代码。

var http = require('http');

var server = http.createServer(function (request, response) {
if (request.method == 'POST') {
var body = '';
request.on('data', function (data) {
body += data;
});
request.on('end', function () {

var POST = JSON.parse(body);
// POST is the post data

});
}
});
server.listen(80);

希望对您有所帮助。

关于json - Node 服务器接收 XmlHttpRequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14096979/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com