如果图像 URL 出现 404 错误,我想加载默认图像。我在图像道具中尝试了 onError() 但它不起作用。
<Image
onError={() => {
setError(true);
}}
source={{
uri: error
? imageUrl
: "https://logodownload.org/wp-content/uploads/2019/07/udemy-logo-5.png",
}}
style={{
height: 50,
width: "100%",
alignItems: "center",
justifyContent: "center",
}}
resizeMode="cover"
/>
我该怎么做?