我可以通过Express中的下一个函数传递数据吗?

时间:2013-08-17 14:18:22

标签: node.js express

在使用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将信息传递到第一个路径?

1 个答案:

答案 0 :(得分:4)

谢谢@amakhrov。我可以使用res.locals并存储信息。