在按钮处理函数中加载存储时未捕获的TypeError

时间:2016-08-12 07:18:48

标签: extjs6-classic

在按钮处理函数中加载存储时,我得到了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

调试器截图:

name is async

but instance has no getAsync function

0 个答案:

没有答案