Phonegap Android 链接 - 下载链接

发布于 2024-12-29 01:02:48 字数 150 浏览 0 评论 0原文

我们构建了一个 Phonegap/Android 应用程序,它使用 iframe 处理付款并提供 mp3 的下载链接 - 一切正常 - 直到您单击下载但没有任何反应!

应用程序内的 iframe 下载权限是否存在问题?有谁有任何想法如何解决?

谢谢 保罗

We have built a Phonegap/Android app which uses an iframe to process payments and provide a download link for a mp3 - all works fine - until you click to download and nothing happens!

Is there issues with iframe download permissions within an app? Does anyone have any ideas how to solve?

Thanks
Paul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

櫻之舞 2025-01-05 01:02:48

两种可能的解决方案:

    // Make sure links in the webview is handled by the webview and not sent to a full browser
    myWebView.setDownloadListener(new DownloadListener() {
        public void onDownloadStart(String url, String userAgent,
                String contentDisposition, String mimetype,
                long contentLength) {
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse(url));
            startActivity(intent);
        }
    });

可以打开与您的 WebView 的链接。

或者在 iFrame 中使用 jQuery(假设 iFrame 中只有 1 个链接),这将在应用程序外部打开链接:

<script type="text/javascript">
  $(document).ready(function() {
    var url;
    url = $("a").attr('href');
    $("a").attr("onclick", "window.open('"+url+"'); return false;");
  });
</script>

Two possible solutions:

    // Make sure links in the webview is handled by the webview and not sent to a full browser
    myWebView.setDownloadListener(new DownloadListener() {
        public void onDownloadStart(String url, String userAgent,
                String contentDisposition, String mimetype,
                long contentLength) {
            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setData(Uri.parse(url));
            startActivity(intent);
        }
    });

which could open the link with your WebView.

or inside your iFrame with jQuery (provided there is only 1 link in the iFrame) which will open the link outside of the application:

<script type="text/javascript">
  $(document).ready(function() {
    var url;
    url = $("a").attr('href');
    $("a").attr("onclick", "window.open('"+url+"'); return false;");
  });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文