1

我们已经根据列表 id 发布了项目,我们使用 myLists 变量来过滤列表 ID,但是这个变量本质上不是反应性的,当我们尝试添加新列表时,新列表的项目不会自动发布。

Meteor.publish('subscription_items', function () {
var userName = this.userId ? Meteor.users.find({ _id: this.userId }).fetch()[0].username : null;

var myLists = [];
var sharedListIDs = [];
SharedLists.find({ shared_with: userName }).forEach(function (list) {
    sharedListIDs.push(list.list_id);
});

Lists.find({ $or: [{ owner: userName }, { _id: { $in: sharedListIDs } }] }).forEach(function (list) {
    myLists.push(list._id);
});

return Items.find({ list_id: { $in: Lists.find({ $or: [{ owner: userName }, { _id: { $in: sharedListIDs } }] }).fetch() } });.

我们有什么办法总是发布新数据吗?请帮我解决这个问题。任何帮助/建议将不胜感激。

4

1 回答 1

0

正如David Weldon在对我的类似问题的回答中指出的那样,您正在寻找的是反应式连接。通过使用包publish-with-relations,我认为您想要的发布功能看起来像这样:

Meteor.publish('subscription_items', function() {
  return Meteor.publishWithRelations({
    handle: this,
    collection: Lists,
    filter: {owner: this.userId},
    mappings: [{collection: SharedLists, key: 'list_id'}]
  });
});

或者,作为(肮脏的)解决方法,您可以致电

Meteor.subscribe('subscription_items');

在您需要重新发布该集合的任何地方。

于 2013-12-24T01:31:27.777 回答