gpt4 book ai didi

extjs - 如何每 X 秒重新加载一次 Store?

转载 作者:行者123 更新时间:2023-12-02 15:37:34 25 4
gpt4 key购买 nike

我正在使用 ExtJS 4 MVC。

有没有办法每隔 X 秒重新加载一次 Store?

我想将代码放在 Controller 的某处。

最佳答案

setInterval(function(){
// Use Ext.getStore to reference your store from the controller
var myStore = Ext.getStore('YourStore');
// Pass in an object of the changes you want to be made to the store
myStore.proxy.extraParams = { key:'sencha'}; // replace with your own object
myStore.load();

},3000);

关于extjs - 如何每 X 秒重新加载一次 Store?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14413058/

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