Web 图片不显示 React-Native
Web Image not displaying React-Native
我试图在 React Native 的文本框 (TextInput) 中粘贴 link,但它没有显示来自 link 的图像。我不确定我的错误在哪里。请有人帮助我,我真的很感激。提前致谢!!!!!!!!!
这是代码
const tryImage = "https://images.app.goo.gl/heFUyytHySGiSMeY8"
<View style={styles.info}>
<Image source={one} style={styles.progress}/>
<Text style={styles.title}>Add Photo</Text>
<Image source={{uri: tryImage}} style={styles.icon}/>
</View>
icon:{
width: 180,
height: 180,
marginTop: 50,
},
抱歉耽搁了。
也许你的 link 有问题。
所以你需要传递正确的uri。
例如,现在您的 link 没有任何扩展名,例如 png 或 jpg。
所以请尝试使用png。
例如:source={{uri: tryImage+'png'}}
希望我的回答对你有所帮助
我试图在 React Native 的文本框 (TextInput) 中粘贴 link,但它没有显示来自 link 的图像。我不确定我的错误在哪里。请有人帮助我,我真的很感激。提前致谢!!!!!!!!!
这是代码
const tryImage = "https://images.app.goo.gl/heFUyytHySGiSMeY8"
<View style={styles.info}>
<Image source={one} style={styles.progress}/>
<Text style={styles.title}>Add Photo</Text>
<Image source={{uri: tryImage}} style={styles.icon}/>
</View>
icon:{
width: 180,
height: 180,
marginTop: 50,
},
抱歉耽搁了。 也许你的 link 有问题。 所以你需要传递正确的uri。 例如,现在您的 link 没有任何扩展名,例如 png 或 jpg。 所以请尝试使用png。 例如:source={{uri: tryImage+'png'}} 希望我的回答对你有所帮助