在ExtJ4.2中,我总是在开发环境中使用ext-debug.js。与ext-all-debug.js相比,它的优点是每个类都作为一个单独的文件加载,因此开发人员工具中的回溯更清晰。
我从ExtJ4.2升级到5.1,我的app.json如下所示:
/**
* Comma-separated string with the paths of directories or files to search. Any classes
* declared in these locations will be available in your class "requires" or
我在异步加载jquery时遇到了问题。如我所见,如果加载javascript,它不依赖于其他库文件,但加载jquery脚本及其带有异步的库文件不起作用,并抛出一个错误,即$ is not defined
下面的脚本位于head标记中
<script async src="../js/jquery/jquery-1.10.1.min.js"> </script>
<script async src="../js/vendor/modernizr-2.8.2.min.js"></script>
<scrip