我想创建一个带有标签的帖子模型,并且能够显示每个帖子的所有标签。你知道最好的办法吗?
我试过这个
<template name='postsLists'>
{{#each post}}
{{> postDetails }}
{{/each}}
</template>
<template name='postDetails'>
title: {{title}}
{{#each tag}}
{{tag}}
{{/each}}
</template>
答案 0 :(得分:10)
您需要使用this
关键字从数组中获取值:
<template name='postDetails'>
title: {{title}}
{{#each tag}}
{{this}}
{{/each}}
</template>
答案 1 :(得分:2)
此代码不起作用:
{{#each tag}}
{{tag}}
{{/each}}
因为“tag”在这里指的是列表和该列表中的元素。尝试:
{{#each tags}}
{{tag}}
{{/each}}