我正在为我的 react js 项目使用 react-lazyload 库。
import LazyLoad from 'react-lazyload';
我首先使用 useEffect 获取数据:
const [ stuff, setStuff ] = React.useState(null);
React.useEffect(() => {
Axios.get('https://jsonplaceholder.typicode.com/posts')
.then((res) => setStuff(res.data))
.catch((err) => console.log(err.message));
}, []);
然后我用lazyload显示东西数组,它工作得很好:
{stuff ? (
stuff.map((each) => {
return (
<LazyLoad
offset={[ -100, 100 ]}
placeholder={<h2>loading...</h2>}
key={each.id}
>
<h3 style={{ margin: 20 }}>{each.title}</h3>
<LazyLoad once={true} placeholder={`https://picsum.photos/id/${each.id}/5/5`}>
<img
data-aos-duration="2000"
data-aos="fade"
src={`https://picsum.photos/id/${each.id}/200/200`}
/>
</LazyLoad>
</LazyLoad>
);
})
) : null}
所以首先它显示每个项目的占位符道具
加载...
并通过向下滚动显示实际项目。唯一的问题是它不知道项目何时完成并且没有要显示的项目,因此当您到达屏幕末尾并且项目已完成时,它仍然显示
加载...
.如何判断 stuff 数组的长度,以便在到达数组末尾时不显示加载内容?