我正在构建一个使用InAppBrowser的应用程序很多。在某些时候,用户可以从该窗口中单击外部链接。我尝试了不同的方法,但是似乎都没有一个好的工作结果。

到目前为止,最好的解决方案是监听loadstart事件(As described here):

app.browser.addEventListener('loadstart', function (inAppBrowser) {
    if(inAppBrowser.url.match(/domain\.com/) === null) {
        var url = inAppBrowser.url;
        window.open(url, "_system");
    }
}


这会在新窗口中以及原始InAppBrowser中打开链接。是否可以取消此活动?还是我可以尝试其他方法?

我已经尝试了以下方法:


Cross window communication
通过executeScript方法插入history.back(-1)
从InAppBrowser中调用window.open(url, '_system');


这是特定于iOS的。

编辑:
我最终在platforms/ios/APPNAME/Plugins/org.apache.cordova.inappbrowser/CDVInAppBrowser.m中添加了以下代码:

NSString *domainStr = [NSString stringWithFormat:@"domain.com"];
NSString *urlStr = [NSString stringWithFormat:@"%@", request.URL];
NSRange result = [urlStr rangeOfString:domainStr];

if(result.location == NSNotFound) {
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr]];

    return NO;
}


上面的代码:

return [self.navigationDelegate webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType];

最佳答案

您有一些选择:


隐藏将CSS注入到inappbrowser的外部链接,如果未显示,则无法单击它们


添加一个loadstop侦听器,然后隐藏链接

app.browser.addEventListener('loadstop', hideLinks);



function hideLinks(){
    app.browser.insertCSS({
                      code: "a { display: none; }"
                      }, function() {
                      console.log("Styles Altered");
                      });
}



修改/子类inappbrowser,更改shouldStartLoadWithRequest方法


如果return [self.navigationDelegate webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType];不是您的,请更改NO以返回URL

关于ios - 从InAppBrowser在 native 浏览器中打开链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21696575/

10-12 05:42