Open wuchuguang opened 6 years ago
const fastify = require('fastify')(); fastify.register(Client, { host: xxxx', dialect:'mysql', username: 'root', password: 'kgd1988', database: 'site515345' }); console.log(fastify.Sequelize);
Probably sequalize still not finish loading. Try
fastify.ready(err => { console.log(fastify.Sequelize); })
const fastify = require('fastify')(); fastify.register(Client, { host: xxxx', dialect:'mysql', username: 'root', password: 'kgd1988', database: 'site515345' }); console.log(fastify.Sequelize);