gpt4 book ai didi

javascript - Node.js 获取 json post 数据

转载 作者:太空宇宙 更新时间:2023-11-04 02:59:01 27 4
gpt4 key购买 nike

我在我的服务器上使用express.js。从我的客户那里,我尝试:

$http.post("url/send", angular.toJson(
{
uploads: uploads,
desc: desc
}
));

在服务器上我想读取此数据:

send function(req, res, next){

};

如何从 req 对象中提取发布的 json 字符串?

最佳答案

在 Express 中,在配置中添加 bodyParser 中间件:

app.configure(function() {
app.use(express.bodyParser());
});

然后在任何请求中,req.body 将包含您的 JSON 和正文数据:

app.post('/items', function(req, res, next) {
console.log(req.body);
});

关于javascript - Node.js 获取 json post 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18868402/

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