**已关闭。**此问题需要debugging details。目前不接受回答。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答问题。
3天前关闭。
Improve this question
export const useGetPosts = () => {
return useInfiniteQuery({
queryKey: [QUERY_KEYS.GET_INFINITE_POSTS],
queryFn: getInfinitePosts as any,
getNextPageParam: (lastPage : any) => {
// If there's no data, there are no more pages.
if (lastPage && lastPage.documents.length === 0) {
return null;
}
// Use the $id of the last document as the cursor.
const lastId = lastPage.documents[lastPage.documents.length - 1].$id;
return lastId;
},
});
};
所有这些代码都标记为错误,我不知道如何修复它
enter image description here的
1条答案
按热度按时间bq3bfh9z1#
这是因为tanstack query v5,请使用以下代码:
字符串