gpt4 book ai didi

javascript - 如何在不重新加载模板的情况下更新集合?

转载 作者:行者123 更新时间:2023-11-30 05:37:25 25 4
gpt4 key购买 nike

我创建了一个事件,每次用户输入内容时都会保存一个帖子(一个微型自动保存系统):

Template.postSubmit.events

"keypress .simditor-body": function() {
var post;
post = {
title: $("#input-title").val(),
content: $("#input-content").val()
};
Posts.update(this._id, {
$set: post
});
console.log("saved");
}

enter image description here

(#input-content.simditor-body内容相同)问题在于,每次用户键入 .simditor-body 时,模板都会重新加载。如何解决这个问题?

最佳答案

在 Meteor 0.8 之前有 {{#constant}}{{#isolate}}preserve,但这些都是now deprecated with blaze .

您可以在查询中将 reactive 作为 false 传递,以告诉 meteor 不要监视集合的更改: http://docs.meteor.com/#find

例如:

YourCollection.find( yourMongoSelector, {reactive:false});

关于javascript - 如何在不重新加载模板的情况下更新集合?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22844671/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com