Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一张这样的桌子
呈现分页项。在调用 API 时,确切的次数是未知的。所以为了处理这样的表格的分页。使用useInfiniteQuery或usePaginatedQuery来自 React Query 更好?
useInfiniteQuery
usePaginatedQuery
我真的很难在这里理解这两个 API 的用例差异
据我通过阅读一些文档了解,usePaginatedQuery 将返回已解决的数据,它等于最后一个成功页面的数据,它不会将最后一页的数据连接到您已经拥有的数据。另一方面,useInfiniteQuery 使用 fetchMore 执行此操作。