版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/inforstack/article/details/53506340
错误信息
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.ExBuild: Mixed-Mode x-compile and microload markup is currently unsupported
[ERR]
[ERR] Total time: 0 seconds
[ERR] The following error occurred while executing this line:
/home/xxx/xxx/xxx/bo/src/main/webapp/client/.sencha/app/build-impl.xml:373: The following error occurred while executing this line:
/home/xxx/xxx/xxx/bo/src/main/webapp/client/.sencha/app/init-impl.xml:258: com.sencha.exceptions.ExBuild: Mixed-Mode x-compile and microload markup is currently unsupported
解决方法
如果你的index.html中使用了标签,切记加上结束标签,如下代码:
<!-- <x-compile> -->
<!-- <x-bootstrap> -->
<link rel="stylesheet" href="bootstrap.css">
<script src="ext/ext-all.js"></script>
<script src="bootstrap.js"></script>
<!-- </x-bootstrap> -->
<script src="app.js"></script>
<!-- </x-compile> -->
参考地址
点击打开链接
点击打开链接
点击打开链接
点击打开链接