所以這個日誌到我的控制檯: app.use(function(req,res,next){console.log(req.method) console.log('why not工作') })express.js app.post middleware not firing
但這並不:
app.post(function (req, res, next) {
console.log(req.method)
console.log('why not working?')
})
都表明,HTTP方法是POST
我缺少什麼?
你怎麼稱呼它?顯示代碼。 – Nonemoticoner
而且,如果這應該是中間件,那麼您還需要調用'next()'或發送響應。 – jfriend00