从最近的 <Await> 返回已解决的 Promise 值。
<Await>
function SomeDescendant() { const value = useAsyncValue(); // ...}// somewhere in your app<Await resolve={somePromise}> <SomeDescendant /></Await> Copy
function SomeDescendant() { const value = useAsyncValue(); // ...}// somewhere in your app<Await resolve={somePromise}> <SomeDescendant /></Await>
从最近的
<Await>
返回已解决的 Promise 值。