【发布时间】:2017-06-30 05:02:42
【问题描述】:
有什么方法可以删除特定路由的中间件
目前所有的中间件都列在http.js文件中
[
'startRequestTimer',
'cookieParser',
'session',
'bodyParser',
'passportInit',
'passportSession',
'myRequestLogger',
'handleBodyParserError',
'compress',
'methodOverride',
'poweredBy',
'router',
'www',
'favicon',
'404',
'500'
]
我想删除特定路由的 bodyParser 中间件
sails.js 可以吗??
【问题讨论】:
标签: node.js sails.js body-parser