0
所有路由我嘗試更快塊快遞
var _LOCK_ = true; // or load it from config
app.all('*', function(req,res,next){
if(_LOCK_) return res.send(401);
next();
});
// this place other routes
app.get(...);
app.post(...);
這種運作良好。但我懷疑是否所有的權利?
它完成這項工作。 – moka