我对 Ionic 和 Cordova 还很陌生,我正在使用 Cordova 创建一个应用程序。
我编写了代码来打开 InAppBrowser 窗口,以便通过 Google+ 共享链接。
不过,我的代码运行良好,一旦用户分享了链接,他们就会在 InAppBrowser 中重定向到他们的 Google+ 页面。用户成功分享帖子后,我将如何关闭 InAppBrowser 窗口?
$scope.googleShare = function(url){
var siteToShare = "https://plusone.google.com/_/+1/confirm?hl=en&url=<?php echo rawurlencode("+url+")";
var options = "location=no,toolbar=yes,toolbarposition=top"
var ref = window.open(siteToShare, '_blank', options);
ref.addEventListener('loadstop', function(event){
if(event.url.match("mobile/close")){
ref.close();
}
})
console.log(siteToShare);
}
Best Answer-推荐答案 strong>
您可以通过监听 loadstart 事件自动关闭 InAppBrowser ,该事件在浏览器开始加载新页面时触发。如果你使用loadstop ,用户会看到浏览器转到了不同的页面。
以下代码是关于如何使用 loadstart 事件关闭浏览器的示例。您所要做的就是将 "part of URL here" 替换为适合您的任何内容。
ref.addEventListener('loadstart', function(event) {
if(event.url.indexOf("part of URL here") > -1) {
ref.close();
}
});
关于android - 分享帖子后如何自动关闭 InAppBrowser?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/38281770/
|