gpt4 book ai didi

javascript - 带phonegap 2.0的childbrowser

转载 作者:行者123 更新时间:2023-11-29 04:31:18 25 4
gpt4 key购买 nike

由于phonegap 2 window.plugins不再可用,但childBrowser仍然依赖它。如何在phonegap 2项目中调用childBrowser插件?

这在 1.9 中运行良好:

cb = window.plugins.childBrowser;

最佳答案

首先从这里下载最新的 child 浏览器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");

关于javascript - 带phonegap 2.0的childbrowser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11713204/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com