1

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

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

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

4

1 回答 1

1

相当于:

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

Fastify自定义对象的位置request和位置。reply

没有,next因为在 Fastify 中没有中间件链,但是有一个请求的生命周期的概念,你可以用钩子自定义

于 2020-06-09T07:43:53.587 回答