0

我有两个系列。一种称为Posts,另一种称为Categories。在帖子集合中,是单个帖子,每个帖子都包含一个 id 数组,categories这些 id 是存储在帖子中的单个帖子所属类别的 id。

在此处输入图像描述

第二个集合是类别集合,其中包含每个帖子所属的类别

在此处输入图像描述

目标

在我的模板中,我将每个帖子显示为其标题、内容、图像和作者,以及通过将帖子集合中的类别 ID 链接到类别集合中的各个类别而产生的类别名称

<template name="latest">
    {{#each posts}}
<div>{{> category}}</div>
      <h5 class="latest-title">{{title.rendered}}</h5>
  <img class="latest-img" src="{{featured_image_thumbnail_url}}" alt="" />
    {{/each}}
</template>

在我的类别模板中

<template name="category">
  {{#each categories}}
 {{name}}
  {{/each}}

</template>

在我的 category.js

Template.category.helpers({
  categories(){
    return CategoryCollection.find({ id: parseInt(this.categories) });
  }
});

如您所见,我想显示属于帖子的类别的名称,它们在一个数组中,因为帖子可能也有 3 个属于它的类别。但我似乎无法让它工作。

编辑

这是我的编辑,包括$in

Template.category.helpers({
  categories(){
    return CategoryCollection.find({ id: {$in: this.categories }});
  }
});

这是我的模板

<template name="category">
  {{#each categories}}
  {{name}}
  {{/each}}

</template>

它似乎不起作用。

进步

它不起作用,因为我没有为我的示例帖子分配类别,上面编辑的代码就是答案

4

2 回答 2

1

我用于此类内容的另一个解决方案只是显示该帖子数组中的类别,甚至没有帮助。这就是我所做的...

方法内部:

//the categories is what you pass from the client as an array of strings
//IE: ['cat1', 'cat2']

categories.forEach(function(cc){
    const cat = Categories.findOne({name: cc});
    if(!cat){
        Categories.insert({
            name: cc,
            count: 1
        });
    } else {
        //increment count if it exists
        Categories.update({name: cc}, {
            $inc:{
                count: 1
            }
        });
    }
});

我插入计数 1 并在存在类别时增加计数的原因是针对多个不同的用例,例如:

  1. 在搜索中显示现有类别,以便始终返回现有文档

  2. 在编辑/删除帖子的情况下,如果count == 1,删除类别如果count > 1,减少该类别的计数。

  3. 当用户添加/编辑帖子时显示现有类别的参考。根据他们在输入上写的内容,我返回带有正则表达式的类别推荐。

在帖子中,只需显示帖子中的类别名称。无需查找类别。

<!-- 
    see that its {{this}} not {{name}} because 
    we saved the categories to the post as an array of strings 
    we'd do {{name}} if we were looping through the categories collection
-->
{{#each categories}}
    {{this}}
{{/each}}

如果您需要从帖子中的数据库访问类别,例如点击事件,您可以快速执行Categories.findOne({name: this.name})

我看到您将其他东西保存到 Category 集合中,我可能会保存到帖子本身和一些,如果它们像链接等,我什至不会保存和生成客户端所需的东西。

于 2016-11-14T06:44:51.000 回答
0

您想使用$in运算符:

 return CategoryCollection.find({ id: {$in: this.categories }});
于 2016-11-14T03:51:33.500 回答