加载状态指示器 Background Fetching Indicators
查询的status === 'loading'
状态足以显示查询的初始硬加载状态,但是有时你可能想显示一个额外的指示符,表明该查询正在后台重新获取数据。
为此,Query 提供了一个isFetching
的布尔值,无论status
变量的状态如何,你都可以使用它来表示数据正在获取中:
function Todos() {
const {
status,
data: todos,
error,
isFetching,
} = useQuery({
queryKey: ["todos"],
queryFn: fetchTodos,
});
return status === "loading" ? (
<span>Loading...</span>
) : status === "error" ? (
<span>Error: {error.message}</span>
) : (
<>
{isFetching ? <div>Refreshing...</div> : null}
<div>
{todos.map((todo) => (
<Todo todo={todo} />
))}
</div>
</>
);
}
显示全局后台加载的状态
除了单个查询的加载状态外,如果要在任何查询正在获取数据时(包括在后台)都显示一个全局的加载指示器,你可以使用useIsFetching
Hook:
import { useIsFetching } from "@tanstack/react-query";
function GlobalLoadingIndicator() {
const isFetching = useIsFetching();
return isFetching ? (
<div>Queries are fetching in the background...</div>
) : null;
}