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.
我有一个网格。获取数据代码代码:
var myParam = { typeId : 1, xxxx : 'xxxx' //some else } grid.store.load(myParam);
什么时候做一些事情,比如时间更新代码:
grid.store.reload();
但是这个丢失的参数。
在 ExtJs3 中有一个 LastParam 的配置。如何在 Extjs4 中做。
谢谢。
使用代理的 extraParams 配置。
grid.store.getProxy().extraParams = myParam; grid.store.load(); grid.store.reload();
这样,参数将被发送,直到您再次使用代码修改额外的参数。