如何允许iOS12访问本地主机?

时间:2019-04-22 10:03:17

标签: ios reactjs xcode nsapptransportsecurity

我正在Xcode(10.2)上测试React项目,环境为iOS 12。 使用模拟器。

我已经设置了ATS配置:

 <key>NSAppTransportSecurity</key>
    <dict>
        <key>NSExceptionDomains</key>
        <dict>
            <key>http://localhost.local</key>
           //also tried http://127.0.0.1 or http://localhost:3000
            <dict> 
                <key>NSIncludesSubdomains</key>
                <true/>
                <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
                <true/>
            </dict>
        </dict>
    </dict>

我正在chrome上运行react项目,效果很好。

问题是,如果我将NSExceptionDomains更改为其他网址,例如https://stackoverflow.com。它工作正常。但在其他网址中,则无效。

有人可以帮助我吗?

0 个答案:

没有答案