如何在流星中将数据设置为模板

时间:2015-10-24 08:13:22

标签: javascript meteor

我是meteor的新手,我想将数据设置为模板

在Javascript中:

Template.test.helpers({
  configDoc:function(){
    return Session.get('configDoc');
  }, 
});

在html中:

<template name="test">
  {{#each doc in configDoc}}
    {{> details doc }}
  {{/each}}
</template>

我想使用detailsdoc模板(此处未显示)的数据设置为{{> details doc }},但这对我不起作用: - (

请让我知道我哪里出错了。

1 个答案:

答案 0 :(得分:1)

See the docs here.

将Template.test更改为:

<template name="test">
  {{#each configDoc}}
    {{> details}}
  {{/each}}
</template>
Template.details

,您可以使用{{attrA}}直接在模板中显示任何属性。

或者,如果您创建辅助函数,则可以将当前文档作为this对象进行访问。