2

phonegap 1.3.0 を使用してモバイル アプリケーションを開発しています。プラグインを呼び出して js 関数を呼び出すボタンを 1 つクリックすると、約 20 秒後にエラーが発生しました:「E/DroidGap(21383): DroidGap: TIMEOUT ERROR! - calling webViewClient」が Eclipse ログ コンソールに表示されます。エミュレーターはダイアログを警告し、エラーメッセージを表示します: サーバーへの接続に失敗しました.(javascript:showProcessBar(1)) エラーを修正するにはどうすればよいですか? ありがとう!

私の質問を補足するために、以下にいくつかの詳細があります。phonegap プラグインで js 関数を呼び出すと。logcat:"E/DroidGap(21383): DroidGap: TIMEOUT ERROR! - calling webViewClient" にエラー メッセージが表示されるはずです。

エラーを生成するコードを見つけます。すぐ下:

private void loadUrlIntoView(final String url) {
    if (!url.startsWith("javascript:")) {
        LOG.d(TAG, "DroidGap.loadUrl(%s)", url);
    }

    this.url = url;
    if (this.baseUrl == null) {
        int i = url.lastIndexOf('/');
        if (i > 0) {
            this.baseUrl = url.substring(0, i+1);
        }
        else {
            this.baseUrl = this.url + "/";
        }
    }
    if (!url.startsWith("javascript:")) {
        LOG.d(TAG, "DroidGap: url=%s baseUrl=%s", url, baseUrl);
    }

    // Load URL on UI thread
    final DroidGap me = this;
    this.runOnUiThread(new Runnable() {
        public void run() {

            // Init web view if not already done
            if (me.appView == null) {
                me.init();
            }

            // Handle activity parameters
            me.handleActivityParameters();

            // Track URLs loaded instead of using appView history
            me.urls.push(url);
            me.appView.clearHistory();

            // Create callback server and plugin manager
            if (me.callbackServer == null) {
                me.callbackServer = new CallbackServer();
                me.callbackServer.init(url);
            }
            else {
                me.callbackServer.reinit(url);
            }
            if (me.pluginManager == null) {
                me.pluginManager = new PluginManager(me.appView, me);        
            }
            else {
                me.pluginManager.reinit();
            }

            // If loadingDialog property, then show the App loading dialog for first page of app
            String loading = null;
            if (me.urls.size() == 1) {
                loading = me.getStringProperty("loadingDialog", null);
            }
            else {
                loading = me.getStringProperty("loadingPageDialog", null);                  
            }
            if (loading != null) {

                String title = "";
                String message = "Loading Application...";

                if (loading.length() > 0) {
                    int comma = loading.indexOf(',');
                    if (comma > 0) {
                        title = loading.substring(0, comma);
                        message = loading.substring(comma+1);
                    }
                    else {
                        title = "";
                        message = loading;
                    }
                }
                me.spinnerStart(title, message);
            }

            // Create a timeout timer for loadUrl
            final int currentLoadUrlTimeout = me.loadUrlTimeout;
            Runnable runnable = new Runnable() {
                public void run() {
                    try {
                        synchronized(this) {
                            wait(me.loadUrlTimeoutValue);
                        }
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }

                    // If timeout, then stop loading and handle error
                    if (me.loadUrlTimeout == currentLoadUrlTimeout) {
                        me.appView.stopLoading();
                        LOG.e(TAG, "DroidGap: TIMEOUT ERROR! - calling webViewClient");
                        //me.webViewClient.onReceivedError(me.appView, -6, "The connection to the server was unsuccessful.", url);
                    }
                }
            };
            Thread thread = new Thread(runnable);
            thread.start();
            me.appView.loadUrl(url);
        }
    });
}

次の行にコメントします: me.webViewClient.onReceivedError(me.appView, -6, "サーバーへの接続に失敗しました.", url); プログラムを終了するダイアログが表示されるためです。

4

3 に答える 3

1

Android では、Web ビューで URL を読み込むときにタイムアウトが適用されます。

このリンクをチェックしてください(実際にはJQMには関係ありません)が、phonegap android http://jquerymobile.com/test/docs/pages/phonegap.html

于 2012-04-10T18:55:54.503 に答える
0

問題はそれ自体を説明しています..time out外部 URL への PhoneGap 呼び出しに応答があると、そのエラーがスローされます。

この HTML5 機能を使用して、インターネット接続を確認できます。

navigator.onLine;

ここで動作することがわかります: http://html5demos.com/nav-online

于 2012-03-08T16:46:47.540 に答える
0

super.setIntegerProperty("loadUrlTimeoutValue",60000);

この行をアクティビティの Java コードに配置します

于 2012-05-25T04:05:49.073 に答える