我试图从帖子中检索一些东西,需要传入请求的rawBody属性。我怎么才能找回它?
我尝试使用express.bodyParser(),在我的post处理程序中,我正在寻找req.rawBody,它是未定义的。
我甚至用connect.bodyParser()尝试过,但还是没有成功。我正在为rawBody进行undefined。
我在stackoverflow网站上阅读,他们已经删除了rawBody功能,但提到将其添加到我们自己的中间件文件中是一个快速解决方案。我是一个新手,所以我不知道如何实现这一点。下面是我的代码片段。
/**
* Module dependencies.
*/
var express = require('express')
, connect = require('connect')
, routes = require('./routes')
, user = require('./routes/user')
, http = require('http')
, path = require('path');
var app = express();
// all environments
app.set('port', process.env.PORT || 3000);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
//app.use(express.bodyParser());
app.use(connect.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(path.join(__dirname, 'public')));
// development only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
app.get('/', routes.index);
app.get('/users', user.list);
/**custom stuff**/
app.post('/upload',function(req, res){
console.log(req.header('Content-Type'));
console.log(req.header('Host'));
console.log(req.header('User-Agent'));
console.log(req.rawBody);
console.log(req.body);
res.send("<h1> Hello the response is "+req.body.username);
});
/** end**/
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});
任何帮助这是非常感谢。
4条答案
按热度按时间dxxyhpgq1#
你可以使用你自己的中间件来实现这一点:
ahy6op9u2#
我又回来了:D在阅读connect.bodyParser之后,我发现了一些东西:bodyParser只解析mime类型为以下之一的数据:application/json、application/x-www-form-urlencoded和multipart/form-data。所以我认为这是另一种方法,它通常不是优雅的,但可以接受:当您尝试将原始数据发送到服务器时,请将mime类型更改为其他类型。因为你的问题是一个字符串,所以我选择text/plain作为例子:
我通过curl测试了它:
以及:
它实际上并不是将你的中间件集成到bodyParser中,只是让它们一起工作。
vkc1a9a23#
基于@Rikky的解决方案,避免数据事件处理程序中的竞争条件的方法是在设置处理程序后立即继续调用中间件链。不要等待req.on('end')调用next(),因为next()调用允许json主体解析器注册自己的数据和结束处理程序;如果你一直等到请求触发了end,它们就会错过所有相关的事件。使用promises:
0dxa2lsx4#
我找到的最佳解决方案是:https://stackoverflow.com/a/9931478/1768033
因为使用
不知何故,我在多格式数据请求中发送的文件的位发生了变化,因此它们不再有效。