标签: javascript node.js express npm
有没有办法访问发送到任何路由的请求对象而无需在.get或类似的东西中访问它,而是访问发送到全球表达的任何请求?
答案 0 :(得分:2)
是。这是中间件的最重要的一点。
引自the documentation:
var requestTime = function (req, res, next) { req.requestTime = Date.now() next() } app.use(requestTime)