React Native App Transport Security已被阻止

时间:2018-07-16 13:44:44

标签: ios xcode react-native react-native-image

我刚刚安装了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.'。这是因为我使用的是Metro Builder?还是其他?

我的信息列表:

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

1 个答案:

答案 0 :(得分:0)

您需要将此密钥添加到Info.plist中 enter image description here

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