如何从中间件中调用{express,connect} .bodyParser()?

时间:2013-08-01 14:31:24

标签: express connect

我有一些自定义中间件。在我的一些处理程序中,我想使用req.body,但这仅在用户执行

时才有效
app.use(express.bodyParser());

我总是可以告诉用户,“你必须首先使用express.bodyParser(),”但我更愿意保持安全并在尚未加载的情况下对其进行实例化。

有没有办法在中间件中调用express.bodyParser()connect.bodyParser()

1 个答案:

答案 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 );
    }
}