我有一个集合,但不想将其全部发布给客户,因为它很大,但是我需要从这个集合中发布一些统计数据(如计数、总和、平均等)。
我不能使用methods
,因为它们不是反应性的,而且我也不能使用publish
,因为它只适用于cursor
.
我有一个想法来创建额外的集合并将这些统计信息存储在其中,但这看起来有点奇怪。
最好的方法是什么?
解决方案
在服务器端:
Meteor.publish('myStats', function() {
var self = this;
var initializing = true;
var stats = {};
var filter = {/* Your filter if needed */};
var calcStats = function() {
stats = {stat1: 0, stat2: 0}; // Init stats
var mc = MyCollection.find(filter).fetch();
for (var i = 0; i < mc.length; i++) {
doc = mc[i];
// Here any logic to calculate stats
stats.stat1 += 1;
stats.stat2 += doc.field;
// ...
}
if (!initializing) {
return self.changed('myStats', 'stringId', stats);
}
};
MyCollection.find(filter).observeChanges({
added: calcStats, // I will recalculate all my stats
changed: calcStats, // after any changes happend
removed: calcStats
});
initializing = false;
this.added('myStats', 'stringId', stats);
return this.ready();
});
在客户端创建集合:
MyStats = new Mongo.Collection('myStats');
使用统计:
Meteor.subscribe('myStats');
var stats = MyStats.findOne('stringId');