本文介绍了之前和之后挂钩请求快递(在任何req之前执行,并在任何res之后执行)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
ExpressJS中间件 req
, res
, next
have钩子像 .on
和 .pipe
。
ExpressJS middleware req
, res
, next
have hooks like .on
and .pipe
.
但是我正在寻找 app.get
和 app.post
方法的钩子。
But I'm looking for hooks for the app.get
and app.post
methods.
推荐答案
可以用于 之前的和和,默认情况下将追加到响应后的日志。
An example of this is the logger
middleware, which will append to the log after the response by default.
请确保在 app.router
之前使用这个中间件,因为订单很重要。
Just make sure this "middleware" is used before app.router
as order does matter.
这篇关于之前和之后挂钩请求快递(在任何req之前执行,并在任何res之后执行)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!