当我使用sencha CMD(我尝试了4和5,结果相似)时,我在加载应用程序时遇到错误:
Uncaught TypeError: Cannot read property 'setPath' of undefined
此错误指的是:Ext.Loader.setPath(),但也会激活Ext.application和Ext.Loader.setConfig(如果我重新排序它们。
在此之前或之后没有错误,它在没有构建的情况下加载时加载正常,在生产和开发微加载器中产生相同的结果。
有什么想法吗?
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<script id="microloader" type="text/javascript" src="touch/microloader/development.js"></script>
<script type="text/javascript">
function init() {
document.addEventListener("deviceready", onDeviceReady, false);
}
function onResume() {
}
</script>
</head>
<body onload="init()">
<img id='splashImage' src='resources/images/splash.png' />
<img id="splashLogo" src='resources/images/splashLogo.png' />
<div id="appLoadingIndicator">
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>