なっく日報

技術やら生活やらのメモ

2015-10-06から1日間の記事一覧

Expressでnext('route')をコールしてmiddlewareをスキップしたときに404になる

謎の現象 Expressで↓のような書き方をした際に、 app.post('/hoge', function(req, res, next) { console.log('middleware1'); next('route'); }, fuction(req, res, next) { console.log('middleware2'); next(); }, function(req, res) { res.send({}); });…