模板如何在Meteor中运行?

时间:2014-11-18 08:37:53

标签: meteor

我尝试Meteor并在Mongo中拥有这样的对象:

{ _id: iureuyhfiwuyerbe, "title": "title", "channel": "http://...", "desc": "description", "items" : [{ "title" : "This is title", "description" : "This is description", "link" : "http://123435", "pubDate" : "16 Oct 2014 20:46:00 +0400" }, { }, { } ... ] }

来自RSS来源的这条新闻。我在Db中有很多相同的文件,它有自己的ID。 我计划使用<select>切换RSS频道并显示所选频道的新闻项目。我需要绑定这两个值。怎么样?我不明白我如何在这个数组中的每个对象的客户端项目数组值上显示?标题,描述等。

这段我的HTML

<template name="newsList">
    <div class="container-fluid">
        {{> channel}}
    </div>
    <div class="container-fluid">
        {{#each items}}
            {{> item}}
        {{/each}}
    </div>
</template>

我看到频道,但看不到项目。 如何在客户端调试代码以查看模板中的变量?我使用Webstorm 9.调试器不会停在模板中的断点上。

谢谢。

1 个答案:

答案 0 :(得分:0)

制作项目模板..

向频道展示频道的策略相同。

{{> items}}

{{item.title}}, {{item.description}} // and more..