在按钮处理函数中加载存储时,我得到了Uncaught TypeError, 我的问题有问题吗? 代码:
{
xtype: 'button',
text: 'Click me',
handler: function() {
var store = Ext.create('Ext.data.Store', {
autoLoad : true,
proxy: {
type: 'ajax',
url : 'MyUrl'
}
});
}
}
错误讯息:
Uncaught TypeError: instance[configPropMap[name].names.get] is not a function
调试器截图: