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 ()
}
module.exports = () => {
return (req,res,next) =>{
if (req.header('Content-type') !== 'application/x-www-form-urlencoded') {
return next ()
}
举报