gpt4 book ai didi

javascript - 如何观察属性并在重新加载时清除它们

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

我每 4 秒重新加载一次 View 的数据

var App = Ember.Application.create({
ready: function() {
setInterval(function() {
App.Quotes.find().reload
}, 4000);
}
});

我用这个在我的 View 中获取值:

    <blockquote>
{{#each model}}
<p>{{message}}</p>
{{/each}}
</blockquote>

问题

每 4 秒就会向 REST API 发出一个新请求以获取新报价。但是,该新报价将附加到现有报价中。如何覆盖旧引号并仅显示新的、更改的值?

最佳答案

参见 Ember model reloading in interval并可能做出微小的改变:

didLoad: function(){
var self = this;
setInterval(function() {
self.clear(); // <- this clears out the existing record
self.reload();
}, 4000);
}

我觉得您在 Ember.Application 对象而不是数组 Controller 中执行此操作有点奇怪。这样做有什么理由吗?

关于javascript - 如何观察属性并在重新加载时清除它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17825135/

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