【发布时间】:2021-03-13 09:05:34
【问题描述】:
我目前有一个包含多个功能的 useEffect。我决定创建一个无限滚动功能,但我很难做到:
这就是我所拥有的:
const [posts, setPosts] = useState([]);
const [page, setPage] = useState(1);
const ref = { current: null };
useEffect(() => {
getPosts(params).then((result) => {
setPosts(result);
}).catch((err) => {});
...
...
...
const observer = new IntersectionObserver((entries) => {
if (entries[0].isIntersecting) {
setPage(next);
}
}, {
threshold: 0.1
}
);
observer.observe(ref.current);
}, [getPosts, ..., ..., ref])
/// FETCHED POSTS
{posts?.length > 0 ? (
posts.map((post, index) => (
<Single
key={post._id}
post={post}
postId={postId}
setObjects={setPosts}
objects={posts}
setTotalResult={setTotalResults}
/>
))
) : (
<NothingFoundAlert />
)}
/// BUTTON
<button ref={ref} style={{ opacity: 0 }}>
Load more
</button>
不管我做什么,它总是抛出这个错误:
TypeError: Failed to execute 'observe' on 'IntersectionObserver': parameter 1 is not of type 'Element'.
以前有人用过这个吗?
【问题讨论】:
-
尝试将
const ref = { current: null };更改为const ref = useRef(null)并将整个IntersectionObserver子句包含在if (ref.current)条件中
标签: javascript reactjs use-effect intersection-observer