我在meteor下有两个仪表板,我想在一个页面上列出两个仪表板中的所有用户帐户。
我发现连接到遥远的mongo非常容易:
var distantDatabase = new MongoInternals.RemoteCollectionDriver("mongodb://127.0.0.1:27017/meteor");
SecondDashboardUsers = new Mongo.Collection("users", { _driver: distantDatabase });
此方法的唯一问题是我收到错误,因为两个数据库的定义方式相同(代码一致):
Error: A method named '/users/insert' is already defined
是否存在workarround,就像我可以设置为集合的别名一样?