1

我有两个关于 Meteor 框架的问题

首先,如何将数组放入 Meteor 集合中?我怎样才能将价值观推入其中?

其次,当我有一个按钮并单击它时,如何更改当前视图?这是通过隐藏和显示模板吗?

谢谢!

4

1 回答 1

2

使用$addToSet将值推送到数组中:

var coll = new Meteor.Collection;
coll.insert({myArray: []});
coll.update({}, {$addToSet: {myArray: "myNewValue"}});

有很多方法可以更改视图,但一种简单的方法是使用Session并检查它是否在您的模板中具有值:

<template name="mytemplate">
  <button>Say hello</button>
  {{#if sayHello}}<p>Hello</p>{{/if}}
</template>

Template.mytemplate.events({
  "click button": function() {
    Session.set("sayHello", true);
  }
});

Template.mytemplate.sayHello = function() {
  return Session.equals("sayHello", true);
}
于 2013-03-07T18:36:36.240 回答