无法使用 PhoneGap 在 Android 中加载 sencha 触摸索引
我按照 http://phonegap.com/start#android 中的指南进行操作从 Sencha Touch 加载我的 app.js。
这是我的 index.html:
<head>
<title>Getting Started</title>
<!-- Sencha Touch -->
<link rel="stylesheet" href="libs/touch/resources/css/sencha-touch.css" type="text/css"></link>
<script type="text/javascript" src="libs/touch/builds/sencha-touch-all.js"></script>
<!-- Application -->
<link rel="stylesheet" href="libs/touch/resources/css/app.css" type="text/css"></link>
<script type="text/javascript" src="assets/www/app.js"></script>
<script type="text/javascript" charset="utf-8" src="assets/www/phonegap-1.4.1.js">
</script>
</head>
<body>
<h1>Hello World</h1>
</body>
库的 src 链接是正确的。我可以做什么来在 Android 设备中加载我的 app.js?
I follow the guide in http://phonegap.com/start#android to load my app.js from Sencha Touch.
This is my index.html:
<head>
<title>Getting Started</title>
<!-- Sencha Touch -->
<link rel="stylesheet" href="libs/touch/resources/css/sencha-touch.css" type="text/css"></link>
<script type="text/javascript" src="libs/touch/builds/sencha-touch-all.js"></script>
<!-- Application -->
<link rel="stylesheet" href="libs/touch/resources/css/app.css" type="text/css"></link>
<script type="text/javascript" src="assets/www/app.js"></script>
<script type="text/javascript" charset="utf-8" src="assets/www/phonegap-1.4.1.js">
</script>
</head>
<body>
<h1>Hello World</h1>
</body>
The src links for the libs it's correct. what i can do to load my app.js in android device?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于PhoneGap,所有文件和目录都应位于assets/www 目录中并从那里引用。因此,当你的index.html位于assets/www中时,它应该引用app.js和phonegap-1.4.1,而不带任何前缀目录:
For PhoneGap, all of your files and directories should be in the assets/www directory and referenced from there. Thus, with your index.html in assets/www it should refer to app.js and phonegap-1.4.1 without any prefaced directories: