在sencha-touch上,这是我的商店声明
Ext.regStore('newsStore', {
model: 'News',
autoLoad: true,
proxy: {
type: 'ajax',
url: '../news/list.form?format=json',
reader: {
type: 'json',
root: ''
}
},
});
如何修改参数?我试过了
params:{ format: 'json'}
但它不起作用!
答案 0 :(得分:11)
商店声明
new Ext.data.Store({
model:'prj.models.ContactInfo',
storeId:'contactInfoId',
proxy:{
type:'ajax',
url:'/GetContactInfoByID',
reader:{
type:'json'
},
extraParams:{
format:'json'
},
listeners:{
exception:function(proxy, response, orientation){
console.error('Failure Notification', response.responseText);
Ext.Msg.alert('Loading failed', response.statusText);
}
}
}
});
将params添加到代理并读取ajax商店
prj.stores.contactInfoId.getProxy().extraParams.partyID = options.partyID;
prj.stores.contactInfoId.getProxy().extraParams.eventName = options.eventName;
prj.stores.contactInfoId.read();
希望这有帮助。
答案 1 :(得分:3)
动态设置额外参数:
如果要一次设置单个参数,可以使用以下
var proxy= myStore.getProxy();
proxy.setExtraParam('param1', 'value 1' );
proxy.setExtraParam('param2' , 'value 2' );
myStore.load();
如果您想一次设置多个参数,可以使用以下
proxy.setExtraParams({
'param1':'value 1',
'param2':'value 2'
});
答案 2 :(得分:2)
您可以尝试使用extraParams
:
Ext.regStore('newsStore', {
model: 'News',
autoLoad: true,
proxy: {
type: 'ajax',
url: '../news/list.form',
reader: {
type: 'json',
root: ''
},
extraParams: {
format: 'json'
}
},
});
答案 3 :(得分:1)
我建议你一个更优雅的解决方案,Sencha方法:
//Take your store
var store = Ext.StoreMgr.get('YOUR_STORE_ID');
//Apply the params
Ext.apply(store.getProxy().extraParams, {
partyID: options.partyID,
eventName: options.eventName
});
//Reload your store
store.contactInfoId.read();
希望这有帮助。