在一条路线中固定多个方法?

Fastify multiple method in a route?

express中,我可以这样做:

router.route("/").get(getController).post(postController)

fastify 如何做到这一点?

fastify 没有这个链接选项,你可以在一个处理程序中使用多种方法:fastify.route()

fastify.route({
  url: '/',
  method: ['GET', 'POST'],
  handler: singleController
})

// or
fastify.get('/', getController).post('/', postController)