2017-08-19 14 views
0

私のhome.html内にiframeを次のように使用しています。Androidのiframeファイルの場所が見つかりません

<iframe src='../../assets/chatbot/chatbot.html' width='100%' height='80%' border='none' frameBorder='0' seamless='seamless'></iframe> 

ウェブブラウザでlocalhostを実行しているとうまく動作します。問題はapkをビルドしてアンドロイドデバイスにインストールしたときに発生します。それは

The webpage at 
file:///assets/chatbot/chatbot.html could not be loaded because: 
net::ERR_FILE_NOT_FOUND 

私はiframe内のこのhtmlファイルへのパスを指定できますか?

答えて

0

が問題を発見しました。

次のようにパスを指定すると問題が解決しました。

src='assets/chatbot/chatbot.html' 
関連する問題