meteor :如何从 meteors helper 打印数组
meteor : How to print an array from meteors helper
我想从仪表助手生成 ul li
标签。
结果:
<ul>
<li>aaa</li>
<li>bbb</li>
</ul>
我的模板代码是
<template name="Mytempalte">
<ul>
{{#each Name}}
???
{{/each}}
</ul>
</template>
和我的助手 returns 一个数组。
Template.Mytempalte.helpers({
Name : function(){
return ["aaa","bbb"];
}
});
只需使用{{this}}
而不是你的???
我想从仪表助手生成 ul li
标签。
结果:
<ul>
<li>aaa</li>
<li>bbb</li>
</ul>
我的模板代码是
<template name="Mytempalte">
<ul>
{{#each Name}}
???
{{/each}}
</ul>
</template>
和我的助手 returns 一个数组。
Template.Mytempalte.helpers({
Name : function(){
return ["aaa","bbb"];
}
});
只需使用{{this}}
而不是你的???