3

我正在尝试从集合中加载最新帖子,同时加载同一帖子的所有评论。该集合具有引用而不是将整个文档存储在彼此内部:

Post { title, body, etc..}
Comment { postId, body, etc.. }

我正在使用 iron-router 作为路由包,并且在我的页面路由中我以这种方式订阅:

this.route('home', {
    path: '/',
    template: 'home',
    waitOn: function () {
        return [
            Meteor.subscribe('latestPost'),
            Meteor.subscribe('lastReadPost')
            ];
    }
});

检索帖子的代码很简单:

Posts.findOne({}, {sort:{createdAt:-1, limit:1}});

现在的问题是我不知道如何在不阅读整个集合的情况下检索评论。我无法在路由器中订阅,因为我仍然没有帖子 ID 来查询评论集合。我猜我可以从模板中做到这一点,但当然,如果我查询评论集合,它仍然是空的。但我确实有 postId,因为它当时在 Posts 集合中。但我需要从模板触发订阅,这听起来不像是一个干净的解决方案。

最佳做法是什么?谢谢!

4

2 回答 2

1

服务器端代码:

Meteor.publish("latestPost", function () {
  var post = Posts.find({}, {sort:{created:-1}}).fetch()[0];
  console.log("publish : " + post.title);
  return [
    Posts.find({_id: post._id}),
    Comments.find({postId: post._id})
  ];
});

客户端代码:

 this.route('home', {
    path: '/',
    template: 'home',
    waitOn: function () {
      return [
        Meteor.subscribe('latestPost')
      ];
    },
    data:function(){
      return {
       post:Posts.findOne(),
       comments:Comments.find()
      };
    }
   });

检查此存储库以查看整个示例。

用户更改到另一条路线后,订阅将自动停止。

于 2013-11-11T19:45:39.003 回答
0

我还将在服务器端查找器选项中包含一个限制

{排序:{创建:-1},限制:1}

于 2013-11-12T21:03:35.383 回答