我有这个代码:
Nodes = new Meteor.Collection("nodes");
[...]
Template.list.events({
'click .toggle': function () {
Session.set("selected_machine", this._id);
Nodes.update(Session.get("selected_machine"), {$set: {"conf" :{"flag": true }}});
}
});
我无法说服流星更新我的条目。DOM 中有微秒闪烁,但服务器拒绝更新。
这是我的数据: { "_id" : ObjectId("50d8ec4f5919ffef343c9151"), "conf" : { "flag" : false }, "name" : "sepp" }
console.log(Session.get("selected_machine")); 给我看身份证。安装了不安全的软件包。在 minimongo 控制台中手写按预期工作。
是否因为我不想更新子数组而出现问题?我究竟做错了什么?谢谢你的帮助