美文网首页
android WebView js加载本地文件的跨域问题

android WebView js加载本地文件的跨域问题

作者: 小浩_w | 来源:发表于2018-09-30 15:37 被阅读0次

webview 添加

        try {
            Class<?> clazz = mWebView.getSettings().getClass();
            Method method = clazz.getMethod(
                    "setAllowUniversalAccessFromFileURLs", boolean.class);
            if (method != null) {
                method.invoke(mWebView.getSettings(), true);
            }
        } catch (IllegalArgumentException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
            e.printStackTrace();
        }

相关文章

网友评论

      本文标题:android WebView js加载本地文件的跨域问题

      本文链接:https://www.haomeiwen.com/subject/fkpwoftx.html