file:/// android_asset /指向Titanium的资源在哪里?

时间:2017-10-18 17:33:23

标签: android-emulator titanium appcelerator-titanium titanium-modules

我有一个Titanium项目,我试图加载位于此处的文件index.html

-root
----建筑
----模块
----平台
----资源
------的index.html

使用以下代码:

var htmlFile = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, "index.html");

我收到错误

  

无法加载file:/// android_asset / Resources /的网页,因为:
  净:: ERR_FILE_NOT_FOUND

所以我想知道我应该在哪里放置index.html文件?我是否必须在某处创建新文件夹?

1 个答案:

答案 0 :(得分:0)

您好我有同样的问题,我的解决方案是:

-app
---assets
**-----first.html** --> this is my local html page to call
---controllers
---styles
---views

中的

-app
---views
-----index.xml i am calling the local html like: 

<Alloy>
    <Window class="mainWin">
        <WebView id='indexView' url='/first.html' />
    </Window>
</Alloy>

我希望这会有所帮助