在React-Native版本30中,某些图像未加载。
这是有效的
<Image style={styles.messageImage}
source={{uri:'https://facebook.github.io/react/img/logo_og.png'}}/>
这不起作用
<Image style={styles.messageImage}
source={{uri:'http://i.imgur.com/lDz3wVn.png'}}/>
看起来带有https
链接的图片正在运行,而带有http
链接的图片却无效。还有其他人面临这个问题吗?
感谢。
答案 0 :(得分:15)
Allow Arbitrary Loads
Boolean
并将其设置为Yes
Xcode默认阻止所有http请求,只允许https请求。因为这是正确的事情。
以下是关于App Transport Security的博文:https://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/