在使用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
将信息传递到第一个路径?
答案 0 :(得分:4)
谢谢@amakhrov。我可以使用res.locals
并存储信息。