所谓“过滤器”,只是一个概念,可以理解是一个路由,也可以理解为一个中间件.原理非常简单,就是利用匹配规则,让其有限匹配在正常的路由前面处理就行了. 比如有如下路由 app.get('/', function (req, res, next) { res.send('index'); }); 访问根目录就能看到index.在前面加上一个路由,封锁全部请求 app.use(function (req, res, next) { return res.send('filter'); }); app.g…