@Module({
imports: [
// Connection to the first database
MongooseModule.forRoot('mongodb://localhost/first-database'),
// Connection to the second database
MongooseModule.forRoot('mongodb://localhost/second-database', {
name: 'second-connection', // Give a name to the connection
}),
],
})
export class AppModule {}
1条答案
按热度按时间mctunoxg1#
在模块文件(例如,app.module.ts)中为第二个数据库创建一个连接
在第二个集合的架构定义中,使用 ref 属性引用第一个数据库中的集合。
在服务控制器中使用它。
有帮助!