首页 > 解决方案 > React Native App Transport Security 已阻止

问题描述

我刚刚安装了 react-native-image-crop。当我尝试在实际的 iPhone 上拍照时,我收到了一个非常奇怪的错误。'App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.'. 这是因为我使用了地铁建设者吗?或者别的什么?

我的信息列表:

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSExceptionDomains</key>
    <dict>
        <key>localhost</key>
        <dict>
            <key>NSExceptionAllowsInsecureHTTPLoads</key>
            <true/>
        </dict>
    </dict>
</dict>

标签: iosxcodereact-nativereact-native-image

解决方案


您需要在 Info.plist 中添加此键 在此处输入图像描述

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>

推荐阅读