在按钮处理程序函数中加载商店时出现 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
调试器截图: