0

是否可以通过流星会话更改 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}}。这可能吗?我怎样才能做到这一点?

我使用流星和引导程序。

干杯!

4

1 回答 1

1

我在您的代码中看到的唯一问题是menu.events. 对于多个事件,您需要指定哪个元素将分别接收它:

Template.menu.events({
  'tap .vermaltung, click .verwaltung': function() {
    Session.set('current_frame', 1);
  }
}
于 2013-07-25T19:39:10.413 回答