Request.body Undefined After Using Express Bodyparser
Edit: i fixed it by using: app.configure(function(){ app.use(express.bodyParser()); }); Original post: I'm trying to figure out how to handle a post with node and express and
Solution 1:
Though you've said now your code works, but i won't suggest you to use bodyParser in the options of
app.configure()
What it does is that, if you use it as you have done, any file can be send into your system for all post requests. It's better if you use
express.json()
and
express.urlencoded()
in the options of
app.configure()
,
and when you expect a file use bodyParser in the respective post route like this
app.post('/upload', express.bodyParser(), function(req, res){//do something with req.files})
Post a Comment for "Request.body Undefined After Using Express Bodyparser"