美文网首页
鸿蒙OS,网络连接模式默认https,如何改成http请求模式

鸿蒙OS,网络连接模式默认https,如何改成http请求模式

作者: 迷失在你de流年 | 来源:发表于2021-06-08 14:33 被阅读0次

    HarmonyOS的网络与连接访问模式默认是:https,如果你是http开头的,请在config.json文件中,找到 deviceConfig节点,添加如下配置:


    image.png

    具体位置:


    image.png

    具体代码:
    "deviceConfig": {
    "network": {
    "cleartextTraffic": "true",
    "securityConfig": {
    "domainSettings": {
    "cleartextPermitted": "true",
    "domains": [
    {
    "subdomains": "true",
    "name": "guolin.tech"
    }
    ]
    }
    }
    }
    }

    相关文章

      网友评论

          本文标题:鸿蒙OS,网络连接模式默认https,如何改成http请求模式

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