以下のような店舗のグリッドパネルがあります。ストアが再度読み込まれるときに各レコードを取得したい。しかし、機能していません
var store = Ext.create('Ext.data.Store', {
autoLoad: false,
fields:['a', 'b', 'c'],
proxy: {
type: 'ajax',
url: 'data.php',
reader: {
type: 'json'
}
},
listeners: {
load: function ( stores, records, successful, eOpts ) {
alert(records.data.a); // fails
}
}
});
または私は他の方法を試します
store.load({
params: {
a: myvariable
},
callback: function (records, operation, success) {
alert(records.data.a); // fail
},
scope: this
});
しかし、それらはすべて失敗です。ありがとう