stores: {
myStore: {
type: 'testStore',
listeners: {
beforeload: function(store, operation) {
// either this works
store.getProxy().setUrl('newUrl');
// or you can try
operation.setUrl('newUrl');
}
}
}
}
或者您可以尝试使用全局近似。。。 通过Application.js中的onBeforeLaunch
onBeforeLaunch() {
// redirect all calls to api url
Ext.Ajax.addListener('beforerequest', function (conn, options) {
options.url = Core.APIURL + options.url;
});
this.callParent(arguments);
}
3条答案
按热度按时间aydmsdu91#
有两种方法:
要么在你的店里
或者您可以尝试使用全局近似。。。
通过
Application.js
中的onBeforeLaunch或通过
Ext.data.Connection
事件beforerequest
ltqd579y2#
配置参数“url”值将自动附加。如果在根
url
中设置JsonPStore。3wabscal3#
尝试: