跳到内容
构建你的应用程序渲染服务器端渲染 (SSR)

服务器端渲染 (SSR)

也称为 "SSR" 或 "动态渲染"。

如果页面使用服务器端渲染,则页面 HTML 会在每次请求时生成。

要为页面使用服务器端渲染,你需要 export 一个名为 getServerSidePropsasync 函数。此函数将在每次请求时由服务器调用。

例如,假设你的页面需要预渲染频繁更新的数据(从外部 API 获取)。你可以编写 getServerSideProps 来获取此数据并将其传递给 Page,如下所示

export default function Page({ data }) {
  // Render data...
}
 
// This gets called on every request
export async function getServerSideProps() {
  // Fetch data from external API
  const res = await fetch(`https://.../data`)
  const data = await res.json()
 
  // Pass data to the page via props
  return { props: { data } }
}

如你所见,getServerSideProps 类似于 getStaticProps,但不同之处在于 getServerSideProps 在每次请求时运行,而不是在构建时运行。

要了解有关 getServerSideProps 工作原理的更多信息,请查看我们的数据获取文档