我在home.html中使用iframe,如下所示。
<iframe src='../../assets/chatbot/chatbot.html' width='100%' height='80%' border='none' frameBorder='0' seamless='seamless'></iframe>
在Web浏览器中的localhost中运行时,它可以正常工作。当我构建apk并安装在Android设备中时出现问题。它说
The webpage at
file:///assets/chatbot/chatbot.html could not be loaded because:
net::ERR_FILE_NOT_FOUND
如何在iframe中指定此html文件的路径?
答案 0 :(得分:1)
发现了这个问题。
指定路径如下解决了问题。
src='assets/chatbot/chatbot.html'