このコードは機能します:
var myStore = Ext.create('Ext.data.Store', {
fields : [ 'abcd' ],
totalCount : 0,
proxy : {
type : 'ajax',
actionMethods : {
create : 'POST',
read : 'POST',
update : 'POST',
destroy : 'POST'
},
url : 'abcd.htm'
},
autoLoad : false
});
myStore.load();
しかし、もしそうなら:
Ext.define('MyStore', {
extend : 'Ext.data.Store',
fields : [ 'abcd' ],
proxy : null,
autoLoad : false,
constructor : function (url) {
this.proxy = new MyProxy(url); // MyProxy class works
}
});
var myStore = new MyStore('abcd.htm');
myStore.load();
その後、動作しません。エラーは非常に奇妙です。私はextjs 4を使用しています。