admin管理员组文章数量:1346656
I have an express app and a POST route:
app.post('/test', function(req, res){
//res.send(req.body.title + req.body.body)
console.log(req.params);
console.log(req.body);
console.log(req.body.user);
console.log(req.body.feedback);
console.log("ok");
//return;
});
I try to do ~ $ curl -X POST ""
and I get:
TypeError: Cannot read property 'user' of undefined
at Router.<anonymous> (/app/app.js:40:22)
at done (/app/node_modules/express/lib/router/index.js:250:22)
at middleware (/app/node_modules/express/lib/router/index.js:244:9)
at param (/app/node_modules/express/lib/router/index.js:227:11)
at pass (/app/node_modules/express/lib/router/index.js:232:6)
at Router._dispatch (/app/node_modules/express/lib/router/index.js:255:4)
at Object.handle (/app/node_modules/express/lib/router/index.js:45:10)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:198:15)
at Object.methodOverride [as handle] (/app/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js:35:5)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:198:15)~ $
Shouldn't that POST work?
Thanks
I have an express app and a POST route:
app.post('/test', function(req, res){
//res.send(req.body.title + req.body.body)
console.log(req.params);
console.log(req.body);
console.log(req.body.user);
console.log(req.body.feedback);
console.log("ok");
//return;
});
I try to do ~ $ curl -X POST "http://xxxx.herokuapp./test?user=hello"
and I get:
TypeError: Cannot read property 'user' of undefined
at Router.<anonymous> (/app/app.js:40:22)
at done (/app/node_modules/express/lib/router/index.js:250:22)
at middleware (/app/node_modules/express/lib/router/index.js:244:9)
at param (/app/node_modules/express/lib/router/index.js:227:11)
at pass (/app/node_modules/express/lib/router/index.js:232:6)
at Router._dispatch (/app/node_modules/express/lib/router/index.js:255:4)
at Object.handle (/app/node_modules/express/lib/router/index.js:45:10)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:198:15)
at Object.methodOverride [as handle] (/app/node_modules/express/node_modules/connect/lib/middleware/methodOverride.js:35:5)
at next (/app/node_modules/express/node_modules/connect/lib/http.js:198:15)~ $
Shouldn't that POST work?
Thanks
Share Improve this question asked Aug 13, 2011 at 22:14 donalddonald 23.8k45 gold badges145 silver badges224 bronze badges4 Answers
Reset to default 4No, the parameter you are passing is not on the post body but in the querystring.
According to the docs, to access it you must do:
req.query.user
The selected answer is wrong. It's very clear you wanted something from the request body (given that you say POST), not the query string. You need to make sure the body parser is in your middleware stack:
app.use(express.bodyParser());
Once you do this, you can use req.body
.
(Furthermore, as others have mentioned, your curl is wrong as well. You're putting something in the query string there instead of the request body.)
Nope that won't work, because you are adding the args to the URL (thats what you would do for a GET). For a post you need to:
curl -d "user=hello" http://xxxx.herokuapp./test
No, the curl invocation is wrong. Try
curl -X POST "http://xxxx.herokuapp./test" -d user=hello
本文标签: javascriptNodejs How to pass params in a POSTStack Overflow
版权声明:本文标题:javascript - Node.js: How to pass params in a POST? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743831033a2546517.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论