我编写了一个使用chrome http://localhost:8600/ /
的完整应用程序当我建立电话差距时,我收到了错误
Android net :: err_file_not_found(file:///android_asset/www/xxxxxx.cfm
所以我想哦,大坝,我搞砸了什么东西。这是我的第一个应用程序。
所以我想让我们回到基础。
所以我创建了一个新项目。
我只创建了2页index.cfm和test1.cfm
index.cfm
<html>
<head>
</head>
<a href="./test1.cfm">test</a>
</html>
test1.cfm
<html>
<head>
</head>
<a href="./index.cfm">index</a>
</html>
然后我构建了应用程序。
下载APK
安装在三星笔记3以及三星笔记10.1
当我运行应用程序时。我看到测试1上点击(触摸)的超链接。
然后我收到以下错误,然后应用关闭
Cfbuilder Android net :: err_file_not_found(file:///android_asset/www/test1.cfm)
那么我需要做什么才能从index.cfm加载一下构建到android的其他页面。
IAm我缺少标签,java。东西。
没有比我能到达的“回到基本”更多
任何帮助都会很棒。有一个伟大的晚上
答案 0 :(得分:0)
好的,经过大量的测试,我发现了它。
任何想要链接到其他网页的网页都需要以下内容
<cfclientsettings detectdevice="true" enabledeviceapi="true"/>
<cfclient>
<cfscript>
</cfscript>
</cfclient>
所以我的网页现在看起来像这样
index.cfm
<!doctype html>
<cfclientsettings detectdevice="true" enabledeviceapi="true"/>
<cfclient>
<cfscript>
</cfscript>
</cfclient>
<html>
<head>
</head>
<a href="./test1.cfm">test 1</a>
</html>
test1.cfm
<!doctype html>
<cfclientsettings detectdevice="true" enabledeviceapi="true"/>
<cfclient>
<cfscript>
</cfscript>
</cfclient>
<html>
<head>
</head>
<a href="./index.cfm">index</a>
<br><br>
<a href="./test3.cfm">test3</a>
</html>
我真的希望这有助于其他人。
度过美好的一天