Node JS请求模块不发送表单数据

时间:2018-04-02 17:50:46

标签: node.js express post request

我正在使用节点js中的“request”模块发布帖子请求,如下所示:

 request.post({url: 'http://localhost:4004/api/v1/notifications/post', form: {msg:msg, userID:userID}}, function(err, httpResponse, body){
    if(err) return 0;
    else return 1;
});

没有服务器端我收到请求,但参数没有到来。我做错了什么?

1 个答案:

答案 0 :(得分:2)

我认为您必须对表单数据进行字符串化并将其放入正文中。以下是一个类似的问题:POST Requests not working using request module in node.js

相关问题