未加载React原生iOS模拟器网络图像

wqsoz72f  于 2023-02-09  发布在  React
关注(0)|答案(1)|浏览(91)

我创建了一个react原生应用程序。图像资产和react原生矢量图标加载正确。但网络图像没有加载。图像正在从aws获取作为签名的url。这些链接在android上工作正常。
已尝试此修复-https://github.com/facebook/react-native/issues/29279#issuecomment-658244428
我不认为需要修补程序修复https://github.com/facebook/react-native/issues/29279#issuecomment-657284028,因为我的react-native版本是0.70.1
应用程序信息

"react-native": "0.70.1"
Xcode Version 13.2.1 (13C100)
niwlg2el

niwlg2el1#

ok.你共享的URL是http并且iOS不全是http请求.要允许http请求在iOS中请将其添加到info.plist文件

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

有关详细信息,请参见this问题和answer

相关问题