我正在尝试像这样修改游标。
Players.find({
'characters.realm': realm
}).populate();
在客户端,我能够这样做。
Mongo.Cursor.prototype.populate = function () { /** function here */ }
但是,这在服务器上不起作用,我找不到[Mongo.Collection].find()
的类型。我尝试过以下方法:
> Players.find() instanceof Mongo.Cursor
false
> Players.find().constructor.name
''
> Object.prototype.toString.call(Players.find());
'[object Object]'
有没有办法在流星服务器中添加选择器的原型?