1

我按照官方 Sencha 学习教程设置了我的第一个 phonegap 应用程序与 sencha touch 给出了这个链接

这是我的index.html代码 -

 <!DOCTYPE html>
 <html>
 <head>
 <title>Contacts</title>
 <script type="text/javascript" src="lib/touch/sencha-touch-debug.js"></script>
 <link href="lib/touch/resources/css/sencha-touch.css" rel="stylesheet"
type="text/css" />
 <script type="text/javascript" src="app/app.js"></script>  
 <script type="text/javascript" src="cordova-1.8.1.js"></script>
 <script type="text/javascript">
/* Ext.application({
    name : "DemoApp",
    launch : function() {
        console.log("App launch");
    }
}); */
  </script>
  <script type="text/javascript">
document.addEventListener("deviceready", DemoApp.launch, false);    
  </script>
  </head>
  <body>
  </body>
  </html>

而我的app/app.js包含——

Ext.application({
name: 'DemoApp',
launch: function() {
    this.launched = true;
    this.mainLaunch();
},
mainLaunch: function() {
    if (!device || !this.launched) {return;}
    console.log('mainLaunch');
}
});

脚本的所有路径都绝对正确,但我仍然收到以下错误。

Uncaught ReferenceError: DemoApp is not defined at file:///android_asset/www/index.html:19

我也尝试自行安装,但上述错误仍然存app.js​​在。index.htmlSencha js 和 css 被正确包含,因为我没有收到关于Ext未定义等的任何错误。

还有什么可能的原因。非常感谢任何帮助。

4

1 回答 1

1
 <script type="text/javascript" src="app/app.js"></script>  
 <script type="text/javascript" src="cordova-1.8.1.js"></script>

应该

 <script type="text/javascript" src="cordova-1.8.1.js"></script>
 <script type="text/javascript" src="app/app.js"></script>  
于 2012-10-12T02:06:35.527 回答