0

我在使用 req.body 时使用 express2.js 我得到未定义或空 {}:

exports.post = function (req: express3.Request, res: express3.Response) {
    console.log(req.body);    
});

我有以下配置:

app.use(express.bodyParser());
app.use(app.router);

app.post('/getuser', routes.getuserprofile.post);

请求正文是 XML 格式,我检查了正确的请求标头。

4

2 回答 2

1

我错过了你有 XML 的部分。我猜 req.body 默认情况下不会解析。

如果您使用的是 Express 2.x,那么@DavidKrisch 的这个解决方案可能就足够了(复制如下)

// This script requires Express 2.4.2
// It echoes the xml body in the request to the response
//
// Run this script like so:
// curl -v -X POST -H 'Content-Type: application/xml' -d '<hello>world</hello>' http://localhost:3000
var express = require('express'),
    app = express.createServer();

express.bodyParser.parse['application/xml'] = function(data) {
    return data;
};

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


app.post('/', function(req, res){
    res.contentType('application/xml');
    res.send(req.body, 200);
});

app.listen(3000);
于 2013-07-25T15:23:22.267 回答
0

我不相信express.bodyParser()支持 XML。它只支持 url 编码的参数和 JSON。

来自:http ://expressjs.com/api.html#middleware

身体解析器()

请求正文解析中间件,支持 JSON、urlencoded 和多部分请求。

于 2013-07-25T16:22:00.783 回答