Ext之页面多次请求问题

extjs 下拉框在拉取本地数据,然后又要展示后台数据时,出现过此问题

{
  xtype:'combo',
  id:'state',
  width:130,
  store: new Ext.data.JsonStore({
       fields: ['val', 'lbl'],
       autoLoad:true,
       data: [['0', '已注册'], ['1', '已审核通过'], ['2', '已审核未通过'], ['3', '已无效']]
    });
  displayField: 'lbl',
  valueField: 'val',
  editable: true,
  triggerAction: 'all', 
    listeners:{
      //渲染之后
      afterrender : function(){     
          Ext.getCmp('state').setValue('xxxxx'); 
    }
}

就是store,autoload自动加载的问题

要让store自动加载而不是加载后台数据,应该加一个属性 mode: 'local',表明是从本地加载数据。

猜你喜欢

转载自www.cnblogs.com/fengziblog/p/10801091.html
今日推荐