this.store.on('beforeload', function()
{
Ext.apply(Ext.getCmp("propTypeGrid").store.baseParams, { 参数1: '111', 参数2: '111' });
});
但是在 3.0 中这样无法增加参数,于是在 ExtJs官方论坛上找到了解决方案:
this.store.on('beforeload', function(store,options)
{
var new_params={参数1: '111', 参数2: '111' };
Ext.apply(options.params,new_params);
});
最后发现 Ext更新到 3.1.1了,在3.1.1中已经修复了这个Bug
如果现在正在用3.0或者3.1的朋友, 有条件的话可以升级到3.1.1。(3.1中这个Bug未修复)
没有条件的话,就用上面的方法就可以了
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn