【发布时间】:2016-02-18 06:42:32
【问题描述】:
我想在单击按钮时显示一个模板而不是另一个模板。类似于 StackOverFlow 问题中的“添加评论”链接。在下面的示例中,我想将 {{> newCommentLink}} 替换为 {{> postEditor}}
<template name="main">
{{#each posts}}
{{> posts}}
{{/each}}
</template>
<template name="posts">
{{#each comments}}
{{> comment}}
{{/each}}
{{> newCommentLink}}
</template>
如果不行,有没有其他办法?
【问题讨论】:
标签: meteor iron-router meteor-blaze