10
我想在我的收藏中返回不同的字段。我知道這些是docs for mongo operators,但我對查詢語言不太瞭解,不知道這是否可行?流星對集合有獨特的查詢嗎?
Meteor.publish("distinctCollection", function() {
return Collection.find({ ... }, fields: { "myField": 1 });
});
我想在我的收藏中返回不同的字段。我知道這些是docs for mongo operators,但我對查詢語言不太瞭解,不知道這是否可行?流星對集合有獨特的查詢嗎?
Meteor.publish("distinctCollection", function() {
return Collection.find({ ... }, fields: { "myField": 1 });
});
Collection.find({}).distinct('myField', true);
要使用,放在[項目] /client/lib/a.js如下:
LocalCollection.Cursor.prototype.distinct = function (key,random) {
var self = this;
if (self.db_objects === null)
self.db_objects = self._getRawObjects(true);
if (random)
self.db_objects = _.shuffle(self.db_objects);
if (self.reactive)
self._markAsReactive({ordered: true,
added: true,
removed: true,
changed: true,
moved: true});
var res = {};
_.each(self.db_objects,function(value){
if(!res[value[key]]){
res[value[key]] = value;
}
});
return _.values(res);
};
謝謝!我會試試這個。 – TimDog
使用這個我能夠做一個自定義的'find()'使某些操作僅被動?所以它唯一的反應是添加和刪除? – Akshat
是的。在self._markAsReactive()中設置false:排序,更改,移動。 – ram1