假设我们有一个父模板和一个子模板:
<template name="parent">
{{> child }}
</template>
<template name="child">
{{#if show}}
//Do something
{{/if}}
</template>
如果我们将“show”分配给父模板:
if (Meteor.isClient){
Template.parent.show = function(){
return Session.get('isShowing');
}
}
子模板有什么办法可以访问它吗?