import React, { useState } from 'react';
const ImageWithFallback = ({ src, fallbackSrc }) => {
const [imageSrc, setImageSrc] = useState(src);
const handleImageError = () => {
setImageSrc(fallbackSrc);
};
return <img src={imageSrc} onError={handleImageError} alt="加载失败" />;
};
export default ImageWithFallback;
在这个示例中,我们创建了一个名为 ImageWithFallback
的组件,它接受两个属性 src
和 fallbackSrc
,分别表示要显示的图片地址和加载失败时要显示的默认图片地址。组件内部使用 useState
钩子来维护当前要显示的图片地址,然后使用 onError
事件处理程序来捕获图片加载失败的情况,并在发生错误时更新图片地址为默认图片地址。
你可以在需要显示图片的地方使用这个组件,并传入相应的 src
和 fallbackSrc
属性:
Codeimport React from 'react';
import ImageWithFallback from './ImageWithFallback';
const App = () => {
const imageUrl = 'https://example.com/image.jpg';
const defaultImageUrl = 'https://example.com/default-image.jpg';
return <ImageWithFallback src={imageUrl} fallbackSrc={defaultImageUrl} />;
};
export default App;