美文网首页
Cordova 12 Android 不支持 http 原因探索

Cordova 12 Android 不支持 http 原因探索

作者: 倪灏 | 来源:发表于2024-05-05 15:40 被阅读0次

    最近在升级 Cordova 到最新版本,升级完成后发现无法请求网络,研究了两次最终发现解决方案。

    发现控制台中有日志输出,提示当前是 https ,无法直接访问 http。

    [INFO:CONSOLE(225)] "Mixed Content: The page at 'https://localhost/index.html' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http:// ....'. This request has been blocked; the content must be served over HTTPS.", source: webpack:///./node_modules/@sentry/browser/esm/integrations/trycatch.js? (225)
    

    开始去查找 config.xml 文件,此时花费了比较多的实际无果。然后就去查代码,在 Android 中查到源码。


    image.png

    从代码可以看出从配置项中获取配置,如果没有就默认为 https。这样解决方案就简单了,直接给一个配置项就可以了。

    <platform name="android">
            <preference name="Scheme" value="http"/>
    </platform>
    

    不得不感慨,Cordova 的资料越来越少了,自己看源码可能还快一些~

    相关文章

      网友评论

          本文标题:Cordova 12 Android 不支持 http 原因探索

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