我正在使用react-native-image-cache-hoc & Blob
const CacheableImage = imageCacheHoc(Image, {
fileHostWhitelist: ['firebasestorage.googleapis.com']
});
并渲染
<CacheableImage style={styles.image} source={{ uri: this.props.uri }} permanent={false} />
this.props.uri :
* 然后错误:props.source.uri 应该是具有有效协议和主机的 Web 可访问 url。注意:默认有效协议为 https,默认有效主机为.
请问你能帮帮我吗 ?谢谢你。