真的是好多坑,慢慢踩平吧.
在使用reacg-native的网络请求的时候,使用fetch方式,便遇到这个错误:
React Native: Possible unhandled promise rejection request fail
大概的意思是请求错误,不能处理.
怎么回事,明明代码和官方提供的一模一样,为什么会出错呢?
经过了1个多小时的搜索,探索:终于明白了,原来是在使用mac中的虚拟模拟器的时候,要开起网络的请求的功能:具体的实现方式:
1.打开你的xcode,然后用xcode打开你的项目
2.点开info选项
3.找到 "App Transport Security Settings" 并点开
4.点击"App Transport Security Settings" 这个选项边上的+号
5.创建“Allow Arbitrary Loads“,后面的类型选择YES.
然后重启项目 大功告成!
原文链接:https://www.f2er.com/react/303662.html