在 using 中Express
,我有如下路线:
app.get('*', function (req, res, next) {
// no route is matched
// so call next() to pass to the static middleware
next();
});
还有另一条路线类似于app.get('/myroute', function(req, res, next)...
我可以通过第一个路径将信息传递到该路径next
吗?