0

phonegap 2 window.plugins は使用できなくなったため、childBrowser はまだそれに依存しています。phonegap 2 プロジェクトで childBrowser プラグインを呼び出すにはどうすればよいですか?

これは1.9でうまく機能していました:

cb = window.plugins.childBrowser;
4

1 に答える 1

1

まず、ここから最新の子ブラウザをダウンロードしますhttps://github.com/phonegap/phonegap-plugins/tree/8848e8dd7f0d93810eec49fb1124f6389c963b68/Android/ChildBrowser

2.0.0バージョンを使用する

プラグインはオブジェクト window.plugins.childBrowser を作成します。使用するには、次の使用可能なメソッドのいずれかを呼び出します。

  /**
    * Display a new browser with the specified URL.
    * This method loads up a new web view in a dialog.
    *
    * @param url           The url to load
    * @param options       An object that specifies additional options
    */
  showWebPage(url, [options])
Sample use:

window.plugins.childBrowser.showWebPage("http://www.google.com", { showLocationBar: true });
  /**
    * Close the browser.
    */
  close() {
Sample use:

window.plugins.childBrowser.close();
  /**
    * A user supplied call back which is run when the browser is closed.
    */
  onClose() 
Sample use:

window.plugins.childBrowser.onClose();
  /**
    * A user supplied call back which is run when the browser location changes.
    * The method is called with the new location of the browser.
    */
  onLocationChange(location) 
Sample use:

window.plugins.childBrowser.onLocationChange(location);
  /**
   * Display a new browser with the specified URL.
   * 
   * NOTE: If usePhoneGap is set, only trusted PhoneGap URLs should be loaded,
   *       since any PhoneGap API can be called by the loaded HTML page.
   *
   * @param url           The url to load
   * @param usePhoneGap   Load url in PhoneGap webview [optional] - Default: false
   */

  openExternal(url, [usePhoneGap])
Sample use:

window.plugins.childBrowser.openExternal("http://www.google.com");
于 2012-07-30T06:04:59.470 に答える