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

来源:2-10 App 级中间件的应用

RR1335

2025-01-10 13:25


module.exports = () => {

return (req,res,next) =>{

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

return next ()

}


写回答 关注

0回答

还没有人回答问题,可以看看其他问题

Express 基础入门

带你快速入门 expres 及中间件!

1977 学习 · 1 问题

查看课程

相似问题