Mongoose populate across 2 databases
问题 I have a node app that uses 2 databases. One is the the Names and the other for the rest of all the data. I have this connection setup: // DATABASE CONNECTION var APP_DB_URI = config.APP_DB; // mongodb://localhost:27017/app_db var app_DB = mongoose.createConnection(APP_DB_URI); var name_DB = app_DB.useDb(config.NAME_DB); // 'name_db' This connection is working properly. There's also no problem upon saving data to both app_db and names_db working perfect. But the problem is this: when I try to