1

ボタン ハンドラ関数でストアをロードするときに 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

デバッガーのスクリーンショット:

nameasync

しかし、機能instanceはありませんgetAsync

4

1 に答える 1