3

phonegapAndroidアプリでリモートhtmlをロードする方法を探しています。私は使用してsuper.loadUrl("file:///android_asset/www/hello.html");いますが、リモートhtmlページをロードするにはどうすればよいですか?

4

1 に答える 1

7

とてもシンプルなVenkatです。

httpリクエストで必要なhtmlページをロードするだけで、

super.loadUrl("http://www.test.com/test1.html");

または、あなたがしたようにローカルのhtmlファイルをロードすることができます

super.loadUrl("file:///android_asset/www/hello.html");

また、hello.htmlwindow.locationで onLoad() JavaScript 関数で使用され、外部 HTML ページをロードします。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <!-- Change this if you want to allow scaling -->
    <meta name="viewport" content="width=default-width; user-scalable=no" />
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">
    <title>LoadUrl
    <script type="text/javascript" charset="utf-8">
    function onBodyLoad()
    {
        document.addEventListener("deviceready",onDeviceReady,false);
    }
    /* When this function is called, PhoneGap has been initialized and is ready to roll */
    function onDeviceReady()
    {
    // do your thing!
      window.location="http://170.60.26.20:8099/Sencha/Html/index.html";
    }
    </script>
  </head>
  <body onload="onBodyLoad()">   
  </body>
</html>

Android マニフェスト ファイルでインターネット アクセス許可を設定していることを確認してください。

于 2012-05-06T15:07:44.270 に答える