Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 0.6.4。不工作Collection.update(t.data._id, { $set: { name: e.currentTarget.value}}); Session.set("edit-" + t.data._id, false);。
Collection.update(t.data._id, { $set: { name: e.currentTarget.value}}); Session.set("edit-" + t.data._id, false);
我建议使用 jQuery 来提取值:$(e.currentTarget).val(). 此外,假设person模板是从 渲染的{{#each people}},您可能只是这样做this._id,但如果没有看到模板就很难判断。
$(e.currentTarget).val()
person
{{#each people}}
this._id
People.update(this._id, { $set: { name: $(e.currentTarget).val()}});
我还建议在更新之前将这些值记录到控制台,以确保回调正在执行并且您正在读取正确的值。