gpt4 book ai didi

android - Webview 错误未捕获 SecurityError

转载 作者:行者123 更新时间:2023-12-02 04:58:34 27 4
gpt4 key购买 nike

我在 android webview 中遇到以下错误

I/chromium: [INFO:CONSOLE(1)] “未捕获的安全错误:阻止了具有来源的帧” https://xxxxxxxxxx.com “访问具有原点的框架”https://xxxxxxxxx.in “。协议(protocol)、域和端口必须匹配。”,来源:https://xxxxxxxxxxxxxxx.com/v1/checkout-frame.js (1)

我的网页 View :

webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setAllowFileAccessFromFileURLs(true);
webview.setWebViewClient(new WebViewClient());
webview.setWebChromeClient(new WebChromeClient());
webview.loadUrl(url);

最佳答案

我使用以下方法解决了这个问题

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
webview.getSettings().setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
}

以及 list 文件应用程序选项卡

<application
....
android:usesCleartextTraffic="true"
...>

关于android - Webview 错误未捕获 SecurityError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51281607/

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