可能是這個愚蠢的問題.. :)有些可以幫助我從響應對象中獲取數據。基本上我想驗證了我的響應數據快遞如何從不同的中間件使用快速響應對象獲取數據
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
app.use('/', function(req, res, next){
console.log('entry point');
res.json({name:"somename",age: 29});
next()
});
var middleware = function (req, res, next) {
console.log('LOGGED');
res.end = function (req, res , next) {
var data = res.data;
//do some validation logic here
next()
}};
app.use(middleware);
var port = process.env.PORT || 10010;
app.listen(port);
您可以將事件處理程序添加到res對象的「完成」或「關閉」。 –