我有子模板附帶的父模板。我需要使用子模板的父母ReactiveVar
。我可以使用Session
方法,但對於我的要求Session
方法不起作用。如何從父模板訪問ReactiveVar值?流星ReactiveVar從子模板訪問父tempate
HTML:
<template name="ParentTemplate">
{{> ChildTemplate}}
</template>
<template name="ChildTemplate">
//Some HTML content
</template>
JS
Template.ParentTemplate.onCreated(function() {
this.myvalue = new ReactiveVar(5); //I tried this.data.myvalue but doesnt works
});
Template.ChildTemplate.helpers({
'myhelper' : function(){
return Template.parentData(1).myvalue.get();
}
});
在父模板中,將數據放在'Template.currentData()'上下文中。 – MasterAM