跳到主要内容
API 参考函数unstable_noStore

unstable_noStore

这是一个旧版的 API,不再推荐使用。为了向后兼容,它仍然被支持。

在版本 15 中,我们推荐使用 connection 来代替 unstable_noStore

unstable_noStore 可以用于声明式地选择退出静态渲染,并表明特定组件不应被缓存。

import { unstable_noStore as noStore } from 'next/cache';
 
export default async function ServerComponent() {
  noStore();
  const result = await db.query(...);
  ...
}

须知要点:

  • unstable_noStore 等同于 fetch 中的 cache: 'no-store'
  • unstable_noStore 优于 export const dynamic = 'force-dynamic',因为它更细粒度,并且可以按组件使用
  • unstable_cache 内部使用 unstable_noStore 不会选择退出静态生成。相反,它将遵循缓存配置来决定是否缓存结果。

用法

如果您不想向 fetch 传递额外的选项,例如 cache: 'no-store'next: { revalidate: 0 },或者在 fetch 不可用的情况下,您可以将 noStore() 用作所有这些用例的替代方案。

import { unstable_noStore as noStore } from 'next/cache';
 
export default async function ServerComponent() {
  noStore();
  const result = await db.query(...);
  ...
}

版本历史

版本变更
v15.0.0unstable_noStore 已被弃用,推荐使用 connection
v14.0.0引入了 unstable_noStore