从最近的 <Await> 返回 rejection 值。
<Await>
import { Await, useAsyncError } from "react-router"function ErrorElement() { const error = useAsyncError(); return ( <p>Uh Oh, something went wrong! {error.message}</p> );}// somewhere in your app<Await resolve={promiseThatRejects} errorElement={<ErrorElement />}/> Copy
import { Await, useAsyncError } from "react-router"function ErrorElement() { const error = useAsyncError(); return ( <p>Uh Oh, something went wrong! {error.message}</p> );}// somewhere in your app<Await resolve={promiseThatRejects} errorElement={<ErrorElement />}/>
从最近的
<Await>
返回 rejection 值。