主分支
分支
main (6.23.1)dev
版本
6.23.1v4/5.xv3.x
useAsyncValue

useAsyncValue

返回最近的 <Await> 父组件的解析数据。

function ProductVariants() {
  const variants = useAsyncValue();
  return <div>{/* ... */}</div>;
}

// Await creates the context for the value
<Await resolve={somePromiseForProductVariants}>
  <ProductVariants />
</Await>;

查看 延迟数据指南<Await> 文档 获取更多信息。