我使用Sencha Architect创建了一个简单的Hello World
应用程序。该程序会自动创建app.html
文件,而不是index.html
。我的浏览器中的一切都很棒。
接下来,我从Sencha Architect运行package命令,它在我的项目文件夹中创建了100个文件,包括index.html
,app.json
,packager.json
等。
app.html
和index.html
文件之间的主要区别如下:
<_script src="http://cdn.sencha.com/touch/sencha-touch-2.2.1/sencha-touch-all.js"></script>"
**我添加了一个下划线,因为这条线被编辑了
如果没有这一行,index.html在浏览器中不起作用,但app.html
会起作用。
我可以手动将此行添加到index.html
文件中,但每次运行打包程序时它都会被覆盖。
有人知道为什么会这样吗?有没有选项或我缺少的东西?