当我尝试执行下面的代码时,我收到两条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。