是否可以通过流星会话更改 div 容器中的 html 代码?
我的 html 代码是
<template name="frame">
<div class="container-fluid">
{{html}}
</div>
</div>
</template>
我的 js 文件看起来像这样
Template.frame.html = function() {
if (Session.equals('current_frame', 1))
return "Verwaltung";
else if (Session.equals('current_frame', 2))
return "Protokoll";
else if (Session.equals('current_frame', 3))
return "Informationen";
else {
return "";
}
};
Template.menu.events({
'tap, click .verwaltung':function(e,t) {
Session.set('current_frame', 1);
},
'tap, click .protokoll':function(e,t){
Session.set('current_frame', 2);
},
'tap, click .informationen':function(e,t){
Session.set('current_frame', 3);
}
});
我想根据会话值用不同的 html 代码更改 {{html}}。这可能吗?我怎样才能做到这一点?
我使用流星和引导程序。
干杯!