我想通过 onclick 函数触发我的车把模板中块的可见性。我可以使用会话和辅助函数来让它工作,但这似乎有点过头了。
<template name="eventlist">
{{#each eventcollection}}
<div class="eventcontent">
name: {{name}} <br>
{{#if showdetail}}
detail: {{detail}}
{{/if}}
</div>
{{/each}}
</template>
有可能让它像这样工作吗?
Template.eventlist.events = {
'click .eventcontent': function() { this.showdetail = true}
}
流星只需要检查事件完成后是否有任何属性发生变化,然后重新渲染模板