我無法從子助手中獲取並設置父模板變量。 我讀過很多關於這個問題的網頁,但我堅持......流星 - 從孩子助手的訪問父模板變量
Template.parent.onCreated(function() {
this.myVar = new ReactiveVar('xyz');
});
預計將接近兒童這樣的:
Template.child.helpers({
setAndGetIt : function() {
Template.parentData(1).myVar = 'testString';
return Template.parentData(1).myVar;
}});
其中
<template name="parent>
{{>child}}
</template>
我想念什麼? (Sessions解決方案在這裏不是......)
順便說一句,你可以使用Session而不是ReactiveVar。 –
我在問題中寫的是...... Sessions解決方案在這裏不是... :) –
哦,對不起,錯過了這個 –