您的位置:首页 > 其它

sencha touch 2 store传参 或者 url后附加参数

2013-07-04 14:34 351 查看
me.pigFileStore.getProxy().setExtraParams({
   card: Ext.getCmp('pigFileSearch').getValue(),
   state:Ext.getCmp('pigFileSearchState').getValue()
});

如果想给创建好的store 附加参数的话  只有后台方法声明好参数  通过上面的方法就可以给store附加参数

下面是我创建的store

card 和state 两个属性并没有在store创建中   但是在http://192.168.10.88:8080/pigFarmTrace/mobile/mobilePigFile!phonePagedQuery.action这个后台方法中已经有了这两个参数  所以通过上面的方法在加载数据源的时候 会在url后面附加上&card ="..‘’参数

me.pigFileStore = Ext.create("Ext.data.Store", {id : 'pigFileStore',
fields : ['id','feedNumber','pigpenNumber','card','entrytime','state'],
pageSize:10,
proxy : new Ext.data.proxy.Ajax({
actionMethods : {

    read : 'POST'

    },
//url : totalPath + '/mobile/mobilePigPen!phonePagedQuery.action',
url:'http://192.168.10.88:8080/pigFarmTrace/mobile/mobilePigFile!phonePagedQuery.action',
reader : {
type : 'json',
rootProperty : 'data',
totalProperty : 'totalCount'
},
extraParams: {
           card: ''
       },
autoLoad : false
})
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  sencha touch 2 store