问答详情
源自:2-10 App 级中间件的应用

module.exports = () => { 在一个文件中能使用 N次吗? 即: json 和 application/x-www-form-urlencoded 放到一个中间件文件中如何解决?


module.exports = () => {

return (req,res,next) =>{

if (req.header('Content-type') !== 'application/x-www-form-urlencoded') {

return next ()

}


提问者:RR1335 2025-01-10 13:25

个回答