问题是服务器上的下一个代码:
Meteor.publish(null , function() {
let events = [];
Groups.find({participants: this.userId}).forEach(function(item) {
events.push(item.latestEvent);
});
return Events.find({_id: {$in: events}});
});
无法在客户端> Events.find().fetch()
上查看新文档
没有重新加载页面。
两个集合都在lib
文件夹中:
Groups = new Mongo.Collection('groups');
Events = new Mongo.Collection('events');
我非常确定这个问题存在于被动数据源中,但仍无法修复。
谢谢你的帮助!
答案 0 :(得分:0)
是的,你是对的:只有事件收集是被动的。有一种简单的方法可以使用publish-composite包来解决它:
Meteor.publishComposite(null, {
find(){
return Groups.find({participants: this.userId});
},
children: [{
find(group){
return Events.find({_id: {$in: group.latestEvent}});
}
}]
});
但是这个解决方案有一个缺点:组文档也会发布。所以,可能你应该从中排除一些字段。