以下のコードを実行しようとすると、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 を使用しています。