このコンテンツはまだ日本語訳がありません。
useAsyncError
从最近的 <Await> 组件返回拒绝值。
<Await>
import { Await, useAsyncError } from "@remix-run/react"; function ErrorElement() { const error = useAsyncError(); return ( <p>Uh Oh, something went wrong! {error.message}</p> );} <Await resolve={promiseThatRejects} errorElement={<ErrorElement />}/>;
指南
API
<Await/>
useAsyncValue()