gpt4 book ai didi

Cordova,为什么需要 InAppBrowser 插件才能在系统浏览器中打开链接

转载 作者:行者123 更新时间:2023-12-03 02:08:53 28 4
gpt4 key购买 nike

我有一个 Cordova 应用程序,它是一个带有单个 HTML 文件的单页应用程序。

所有链接都应在系统浏览器中打开。我不需要“嵌入式”InAppBrowser,而是真正的 native 系统/外部浏览器。

我们到处都可以找到使用 InAppBrowser 的代码示例,例如:

window.open('http://apache.org', '_system');

但是为什么我们需要安装 InAppBrowser,即使我们甚至不打算使用嵌入式浏览器?

有人能真正解释一下关于链接目标的 WebView 的行为吗?目前尚不清楚它应该对 target=_blank 做什么,但除了打开一个新的浏览器窗口之外,我看不出它还能做什么。

请注意,问题似乎只出现在 iOS 上,因为使用 target=_blank 的 Android(带有 Crosswalk 插件)似乎总是可以正常工作并在新的 native 浏览器窗口中打开。

最佳答案

所以我用我所发现的来回答我自己的问题。请注意,我仅处理 Cordova 5.1.1 上的 iOS 和 Android(带有 Crosswalk 插件),它可能不适用于其他平台/版本。

需要 InAppBrowser

即使您不需要嵌入式浏览器,也需要 InAppBrowser 插件。这使得 _system 目标可用,触发 native 插件代码打开系统/外部浏览器。

所以看来该插件在某种程度上是一个“二合一”插件:它允许使用嵌入式浏览器+它允许安全地强制外部系统浏览器打开。

目前尚不清楚默认 WebView 行为应与 _blank 链接相关(也不清楚它是否以任何方式针对 WebView 进行标准化),但我发现无法在没有此插件或 native 代码的 iOS。

在 WebView 中打开 _self,在 native 浏览器中打开 _blank

如果像我一样,您不关心嵌入式浏览器,而只是想在现有应用程序中打开 native 外部浏览器的所有 _blank 目标,而不会有太多痛苦(特别是如果应用程序也是一个移动网站...),您可以在应用程序的开头运行以下代码:

    function openAllLinksWithBlankTargetInSystemBrowser() {
if ( typeof cordova === "undefined" || !cordova.InAppBrowser ) {
throw new Error("You are trying to run this code for a non-cordova project, " +
"or did not install the cordova InAppBrowser plugin");
}

// Currently (for retrocompatibility reasons) the plugin automagically wrap window.open
// We don't want the plugin to always be run: we want to call it explicitly when needed
// See https://issues.apache.org/jira/browse/CB-9573
delete window.open; // scary, but it just sets back to the default window.open behavior
var windowOpen = window.open; // Yes it is not deleted !

// Note it does not take a target!
var systemOpen = function(url, options) {
// Do not use window.open becaus the InAppBrowser open will not proxy window.open
// in the future versions of the plugin (see doc) so it is safer to call InAppBrowser.open directly
cordova.InAppBrowser.open(url,"_system",options);
};


// Handle direct calls like window.open("url","_blank")
window.open = function(url,target,options) {
if ( target == "_blank" ) systemOpen(url,options);
else windowOpen(url,target,options);
};

// Handle html links like <a href="url" target="_blank">
// See https://issues.apache.org/jira/browse/CB-6747
$(document).on('click', 'a[target=_blank]', function(event) {
event.preventDefault();
systemOpen($(this).attr('href'));
});
}

关于Cordova,为什么需要 InAppBrowser 插件才能在系统浏览器中打开链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32208609/

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