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 ()
}
2025-01-10
舉報