作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我尝试用 React Native 做的事情:
基本上,我声明了一个函数来执行步骤 2 和 3,并将其作为源放在图像组件中。但是,Image 组件不会呈现任何图像,即使目标图像存在于具有 URL 的存储中也是如此。
这里可能发生了什么?这是我正在使用的代码。不明白为什么这段代码不起作用……也许是语法错误?执行此操作的修复/更好方法是什么?
//The function to check if the image actually exists and return placeholder if not
const checkImageURL = (url) => {
const placeholder_url='url_of_placeholder_image';
fetch(url)
.then(res => {
if(res.status == 404){
return placeholder_url;
}
else{
return url;
}
})
.catch(err=>{return placeholder_url})
}
//The way I declared the source for the image
<Image source={uri:checkImageURL(url)} style={style.mainImage}/>
最佳答案
remote URL 的source prop 必须是对象,所以需要多加一个花括号
<Image source={{uri:checkImageURL(url)}} style={style.mainImage}/>
有关 Prop 中花括号的更多信息 here
关于react-native - react native : Issue in declaring the image source as a function?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64411184/
我是一名优秀的程序员,十分优秀!