fastify.js 相当于 Node 服务器的 express next()

fastify.js equivalent of express next() for Node server

在快递中,我们有这样的路线:-

app.get("/route1", function(req, res, next){
...
}

Fastify Framework 中的等效语句是什么(下一部分很重要)?

等同于:

app.get('/route1', function(request, reply) {
...
}

其中 request and reply 是 Fastify 自定义对象。

没有next因为Fastify中没有中间件链,但是有Lifecycle of a request that you can customize with hooks

的概念