Express 4,Body Parser和Router

时间:2016-03-14 18:11:32

标签: express router

我正在使用Express 4和Body Parser,以便我可以解析随每个请求发送的不同JSON有效负载。我试图将问题与我的不同路由器分开但在express 4中使用新路由对象。但是,即使我发送application / json有效负载,post中的req.body对象仍然会解析为空。 这是一段代码,展示了我想要实现的目标

//Setup
var compression    = require('compression'); //gzip
var express        = require('express');
var app            = express();
var bodyParser     = require('body-parser');
app.use(compression());

// configure app to use bodyParser()
// this will let us get response data from a POST
var json_body_parser = bodyParser.json();
var urlencoded_body_parser = bodyParser.urlencoded({ extended: true });
app.use(json_body_parser);
app.use(urlencoded_body_parser);

var port = process.env.PORT || 8081;

var router = express.Router();
router.use(function(req, res, next) {
    // log each request to the console
    console.log(req.method, req.url);
    next();
});

router.route('/test')
    .get(function(req, res) { //Get All
        //do some stuff get stuff
    })
    .post(function(req, res) { //Create
        console.log(JSON.stringify(req.body)); //Empty ???
        res.json({ "message": "yeah!" });
        //Do some post stuff
    });

app.use('/api', router);

app.listen(port);

console.log('Magic happens on port ' + port);

使用PostMan的帖子示例

POST /api/test HTTP/1.1
Host: localhost:8081
Accept: application/json
Cache-Control: no-cache

{ "data":"4edd40c86762e0fb12000013" }

如何在POST请求中获取请求正文?

1 个答案:

答案 0 :(得分:2)

这是发布请求中内容类型的问题。它应该已设置为Content-Type - application / json。我确认这是原因。