gpt4 book ai didi

multithreading - 在Sencha Touch应用程序中自动刷新列表

转载 作者:行者123 更新时间:2023-12-03 13:14:48 26 4
gpt4 key购买 nike

我正在开发一个简单的聊天应用程序,单击“刷新”按钮时可以查看更新的数据,但是我可以定期从服务器刷新数据(因为我的聊天记录已远程存储在数据库中)

提前致谢。

最佳答案

使用Sencha Touch的DelayedTask类:

//create the delayed task instance with our callback
var task = Ext.create('Ext.util.DelayedTask', function() {
//load the list's store here. The list will be automatically updated
listComp.getStore().load(); // Assuming your list component is "listComp"
listComp.refresh();

// The task will be called after each 10000 ms
task.delay(10000);
}, this);

//The function will start after 0 milliseconds
//so we want to start instantly at first
task.delay(0);

//to stop the task, just call the cancel method
//task.cancel();

这应该适合您的情况。

关于multithreading - 在Sencha Touch应用程序中自动刷新列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9697434/

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