react-native Image标签加载https网络图片不显示,代码如下:
import React,{Component} from 'react';
import {View,Image} from 'react-native';
export default class ImageUse extends Component {
render() {
let impPath='https://www.baidu.com/img/bd_logo1.png';
return (
<View>
<Image style={{width:200,height:100}} source={{uri:impPath}}/>
</View>
);
}
}
解决方案:
1、如果手机时间和实际时间不一致,将手机时间调成正确时间
2、将https改成http
另外必须设置图片的宽高,否则也不会显示
测试机器:GT-N7108 Android 4.1.2
React Native版本:0.55.4