ExtJs4遇到的问题

 初学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 });

你可能感兴趣的:(职场,ExtJs,休闲,Ext.Loader)