2

在 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吗?

4

1 回答 1

5

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

于 2013-08-17T15:26:01.983 回答