0

我正在尝试使用 fastify-bookshelfjs 进行 fastify。

联系方式(型号)

module.exports = async function (fastify) {
  console.log("4")
  fastify.bookshelf.Model.extend({
    tableName: 'contacts',
  })
}

联系人(控制器)

console.log("3")
const Contact = require('../models/contact')()

// Get all contact
async function getContact(req, reply) {
        const contacts = Contact.fetchAll()
        reply.code(200).send(contacts)
}
module.exports = getContact

联系方式(路线)

module.exports = async function (fastify) {
  console.log("2")
  const contact = require('../controller/contact')

  fastify.get('/', contact.getContact)
}

当服务器启动时,我得到这个输出

2
3
4
(node:10939) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'bookshelf' of undefined
1
server listening on 3000

为什么联系(模型)中的 fastify 是未定义的,如何解决?

4

1 回答 1

0

在您的controller中,当您导入模型时,您需要将fastify其作为参数。

此外,您必须导入fastify模块。

您的联系人(控制器)应该是

const fastify = require('fastify') // import the fastify module here
console.log("3")
const Contact = require('../models/contact')(fastify)

// Get all contact
async function getContact(req, reply) {
        const contacts = Contact.fetchAll()
        reply.code(200).send(contacts)
}
module.exports = getContact
于 2019-02-20T04:30:43.387 回答