菜鸟教程小白 发表于 2022-12-12 21:14:12

android - 分享帖子后如何自动关闭 InAppBrowser?


                                            <p><p>我对 Ionic 和 Cordova 还很陌生,我正在使用 Cordova 创建一个应用程序。 </p>

<p>我编写了代码来打开 InAppBrowser 窗口,以便通过 Google+ 共享链接。</p>

<p>不过,我的代码运行良好,一旦用户分享了链接,他们就会在 InAppBrowser 中重定向到他们的 Google+ 页面。用户成功分享帖子后,我将如何关闭 InAppBrowser 窗口?</p>

<pre><code>    $scope.googleShare = function(url){
      var siteToShare = &#34;https://plusone.google.com/_/+1/confirm?hl=en&amp;url=&lt;?php echo rawurlencode(&#34;+url+&#34;)&#34;;   
      var options = &#34;location=no,toolbar=yes,toolbarposition=top&#34;
      var ref = window.open(siteToShare, &#39;_blank&#39;, options);
      ref.addEventListener(&#39;loadstop&#39;, function(event){
          if(event.url.match(&#34;mobile/close&#34;)){
            ref.close();
          }
      })
      console.log(siteToShare);
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以通过监听 <code>loadstart</code> 事件自动关闭 <code>InAppBrowser</code>,该事件在浏览器开始加载新页面时触发。如果你使用<code>loadstop</code>,用户会看到浏览器转到了不同的页面。</p>

<p>以下代码是关于如何使用 <code>loadstart</code> 事件关闭浏览器的示例。您所要做的就是将 <code>"part of URL here"</code> 替换为适合您的任何内容。</p>

<pre><code>ref.addEventListener(&#39;loadstart&#39;, function(event) {
if(event.url.indexOf(&#34;part of URL here&#34;) &gt; -1) {
    ref.close();
}
});
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于android - 分享帖子后如何自动关闭 InAppBrowser?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/38281770/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/38281770/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: android - 分享帖子后如何自动关闭 InAppBrowser?