我需要从处理程序文件中访问 fastify 实例。我完全不记得我应该怎么做。
指数:
fastify.register(require('./routes/auth'), {
prefix: '/auth'
})
路线/身份验证:
module.exports = function(fastify, opts, next) {
const authHandler = require('../handlers/auth')
fastify.get('/', authHandler.getRoot)
next()
}
处理程序/身份验证:
module.exports = {
getRoot: (request, reply) {
// ACCESS FASTIFY NAMESPACE HERE
reply.code(204).send({
type: 'warning',
message: 'No content'
})
}
}
谢谢!