我正在使用nodejs mongoose连接到MongoDB,但是我需要2个不同的连接来连接两个不同位置的2个不同的MongoDB,我做的如下:
global.otherDB = mongooseGlobal.createConnection(uri_1/DB1, { db: { safe: true });
global.mongoose = mongooseGlobal.connect(uri_2/DB2, { db: { safe: true });
现在我需要连接到uri_2 / DB2,我使用mongoose,我需要连接到uri_1 / DB1,我使用otherDB,现在这里发生的事情令人惊讶,
请提供意见。