Extjs4.0.7 MVC Architecture异常
uncaught exception: Ext.Loader is not enabled, so dependencies cannot be resolved dynamically. Missing required class: AM.controller.User
解决方法:
在app.js最上面加上:Ext.Loader.setConfig({ enabled: true });
Ext.Loader.setConfig({ enabled: true }); Ext.application({ name: ‘AM‘, appFolder: ‘app‘, launch: function(){ Ext.create(‘Ext.container.Viewport‘, { layout: ‘fit‘, items: [ { xtype: ‘panel‘, title: ‘用户‘, html: ‘<font color=blue>用户列表</font>‘ } ] }); }, controllers: [ ‘Users‘ ] });
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。