在express中,我们有这样的路线:
app.get("/route1", function(req, res, next){ ... }
Fastify Framework中的等价语句是什么(下一部分很重要)?
wpcxdonn1#
其等价物为:
app.get('/route1', function(request, reply) { ... }
其中request和reply是Fastify自定义对象。没有next,因为在Fastify中没有中间件链,但是有一个请求生命周期的概念,您可以使用hooks进行自定义
request
reply
next
1条答案
按热度按时间wpcxdonn1#
其等价物为:
其中
request
和reply
是Fastify自定义对象。没有
next
,因为在Fastify中没有中间件链,但是有一个请求生命周期的概念,您可以使用hooks进行自定义