我有一些自定义中间件。在我的一些处理程序中,我想使用req.body
,但这仅在用户执行
app.use(express.bodyParser());
我总是可以告诉用户,“你必须首先使用express.bodyParser(),”但我更愿意保持安全并在尚未加载的情况下对其进行实例化。
有没有办法在中间件中调用express.bodyParser()
或connect.bodyParser()
?
答案 0 :(得分:1)
我不确定这是否会起作用以及它是否会一直有效,但我相信这将是“更接近”的方式来做你想做的事情,不依赖于connect / express (你未在问题中指明的事情)。
// Beware that the main module of the node process _must_
// be able to resolve express with this! This will allow to not depend on express.
var express = require.main.require( "express" );
// If you can depend on express, use this instead!
//var express = require( "express" );
function yourMiddleware( req, res, next ) {
var me = function( req, res ) {
// do your things
next();
};
if ( req.body === undefined ) {
express.bodyParser()( req, res, me );
} else {
me( req, res );
}
}