1

以下のコードを実行しようとすると、2 つのUncaught ReferenceErrorメッセージが表示されます

Ext.define('Example.foo', {
  store: _createStore(),
  _createStore: function() {
    return new Ext.data.JsonStore({...});
  }
});
var example = new Example.foo();

エラーメッセージ:

Uncaught ReferenceError: _createStore is not defined
Uncaught ReferenceError: Example is not defined 

_createStore上記で が定義されている場合、エラーは引き続き発生しますstore。ExtJS 4.2.1.883 を使用しています。

4

1 に答える 1