我有StoreBaseOn
宣佈,我想改變它的網址,然後加載它,因爲我的代碼需要這樣做。如何更改網址?取代網址Ext.data.store
申報代碼:
StoreBaseOn = new Ext.data.JsonStore({
url: [myurl],
root: 'rows',
idProperty: [myID],
autoLoad: true,
remoteSort: true,
baseParams: [myParam],
fields: ['id', 'age']
});
我知道如何改變PARAM例如StoreBaseOn.setBaseParam('group', the_group);
但如何更改網址?