初学ExtJS一开始就遇到问题了,特此贴出查找解决过程,大牛勿喷。
详情查阅:Ext.Loader
Uncaught Ext.Error: Ext.Loader is not enabled, so dependencies cannot be resolved dynamically. Missingrequired class: AM.controller.Users
错误位置:app.js
Ext.application({
name:'AM',
appFolder:'app',
controllers:['Users'],
launch:function(){
..........
}
解决办法:app.js中第一行添加Ext.Loader.setConfig({enabled:
true
});