使用发布合成

时间:2016-02-29 09:35:51

标签: angularjs mongodb meteor-helper angular-meteor meteor-publications

我有两个收藏类别 Feed

分类

{
   "_id": "ADFGFDF",
   "title" : "title",
}

订阅

{
   "_id": "DFSAHT",
   "feeds" : "ds sdsd sds",
   "categoryId" : "catId"
}

我需要得到这样的结果:

{
   "_id": "ADFGFDF",
   "title" : "title",
   "categoryId" : "DFSAHT"
   "category" : {
     "_id": "DFSAHT",
     "feeds" : "ds sdsd sds",
    }
}

我尝试使用publish-composite,这是我的代码。

服务器

Meteor.publishComposite('feedscateg', function () {

return {
  find: function () {
    return Category.find({});
  },
  children: [
    {
      find: function (cat) {
        return Feeds.find({ categoryID: cat._id });
      }
    }

  ]
}
});

在客户端Angular中我尝试了这个:

$scope.feeds = $meteor.collection(Category).subscribe('feedscateg');

我也对视图部分感到困惑。

1 个答案:

答案 0 :(得分:0)

publishComposite不修改集合数据,它将分别加载Feeds和Category。如果您想获取Feed项的类别,只需从客户端db中选择它。

$scope.getFeedCategory = function (feedItem) {
    Category.findOne({'_id': feedItem.categoryId});
};