InfiniteScrollResource<T>
Defined in: useInfiniteScroll.ts:32
Type Parameters
| Type Parameter |
|---|
T |
Properties
error
readonly error: Error | undefined;
Defined in: useInfiniteScroll.ts:40
最近一次加载错误。
hasMore
readonly hasMore: boolean;
Defined in: useInfiniteScroll.ts:42
是否仍可能存在下一页。
isEmpty
readonly isEmpty: boolean;
Defined in: useInfiniteScroll.ts:36
已完成首次加载且结果为空。
isLoading
readonly isLoading: boolean;
Defined in: useInfiniteScroll.ts:38
当前是否正在加载新页面。
loadMore
readonly loadMore: () => void;
Defined in: useInfiniteScroll.ts:44
加载下一页。
Returns
void
refresh
readonly refresh: () => void;
Defined in: useInfiniteScroll.ts:46
清空当前页面并重新加载第一页。
Returns
void
value
readonly value: T[];
Defined in: useInfiniteScroll.ts:34
已加载页面合并后的实体。