{"pageProps":{"routes":[{"title":"Documentation","heading":true,"routes":[{"title":"Getting Started","path":"/docs/getting-started.md"},{"title":"Basic Features","open":true,"routes":[{"title":"Pages","path":"/docs/basic-features/pages.md"},{"title":"Data fetching","path":"/docs/basic-features/data-fetching.md"},{"title":"Built-in CSS Support","path":"/docs/basic-features/built-in-css-support.md"},{"title":"Static File Serving","path":"/docs/basic-features/static-file-serving.md"},{"title":"TypeScript","path":"/docs/basic-features/typescript.md"},{"title":"Environment Variables","path":"/docs/basic-features/environment-variables.md"}]},{"title":"Routing","routes":[{"title":"Introduction","path":"/docs/routing/introduction.md"},{"title":"Dynamic Routes","path":"/docs/routing/dynamic-routes.md"},{"title":"Imperatively","path":"/docs/routing/imperatively.md"},{"title":"Shallow Routing","path":"/docs/routing/shallow-routing.md"}]},{"title":"API Routes","routes":[{"title":"Introduction","path":"/docs/api-routes/introduction.md"},{"title":"Dynamic API Routes","path":"/docs/api-routes/dynamic-api-routes.md"},{"title":"API Middlewares","path":"/docs/api-routes/api-middlewares.md"},{"title":"Response Helpers","path":"/docs/api-routes/response-helpers.md"}]},{"title":"Deployment","path":"/docs/deployment.md"},{"title":"Advanced Features","routes":[{"title":"Preview Mode","path":"/docs/advanced-features/preview-mode.md"},{"title":"Dynamic Import","path":"/docs/advanced-features/dynamic-import.md"},{"title":"Automatic Static Optimization","path":"/docs/advanced-features/automatic-static-optimization.md"},{"title":"Static HTML Export","path":"/docs/advanced-features/static-html-export.md"},{"title":"Absolute Imports and Module Path Aliases","path":"/docs/advanced-features/module-path-aliases.md"},{"title":"AMP Support","routes":[{"title":"Introduction","path":"/docs/advanced-features/amp-support/introduction.md"},{"title":"Adding AMP Components","path":"/docs/advanced-features/amp-support/adding-amp-components.md"},{"title":"AMP Validation","path":"/docs/advanced-features/amp-support/amp-validation.md"},{"title":"AMP in Static HTML export","path":"/docs/advanced-features/amp-support/amp-in-static-html-export.md"},{"title":"TypeScript","path":"/docs/advanced-features/amp-support/typescript.md"}]},{"title":"Customizing Babel Config","path":"/docs/advanced-features/customizing-babel-config.md"},{"title":"Customizing PostCSS Config","path":"/docs/advanced-features/customizing-postcss-config.md"},{"title":"Custom Server","path":"/docs/advanced-features/custom-server.md"},{"title":"Custom `App`","path":"/docs/advanced-features/custom-app.md"},{"title":"Custom `Document`","path":"/docs/advanced-features/custom-document.md"},{"title":"Custom Error Page","path":"/docs/advanced-features/custom-error-page.md"},{"title":"`src` Directory","path":"/docs/advanced-features/src-directory.md"},{"title":"Multi Zones","path":"/docs/advanced-features/multi-zones.md"},{"title":"Measuring performance","path":"/docs/advanced-features/measuring-performance.md"}]},{"title":"Upgrade Guide","path":"/docs/upgrading.md"},{"title":"FAQ","path":"/docs/faq.md"}]},{"title":"API Reference","heading":true,"routes":[{"title":"CLI","path":"/docs/api-reference/cli.md"},{"title":"next/router","path":"/docs/api-reference/next/router.md"},{"title":"next/link","path":"/docs/api-reference/next/link.md"},{"title":"next/head","path":"/docs/api-reference/next/head.md"},{"title":"next/amp","path":"/docs/api-reference/next/amp.md"},{"title":"Data Fetching","routes":[{"title":"getInitialProps","path":"/docs/api-reference/data-fetching/getInitialProps.md"}]},{"title":"next.config.js","routes":[{"title":"Introduction","path":"/docs/api-reference/next.config.js/introduction.md"},{"title":"Environment Variables","path":"/docs/api-reference/next.config.js/environment-variables.md"},{"title":"Custom Page Extensions","path":"/docs/api-reference/next.config.js/custom-page-extensions.md"},{"title":"CDN Support with Asset Prefix","path":"/docs/api-reference/next.config.js/cdn-support-with-asset-prefix.md"},{"title":"Build Target","path":"/docs/api-reference/next.config.js/build-target.md"},{"title":"Custom Webpack Config","path":"/docs/api-reference/next.config.js/custom-webpack-config.md"},{"title":"Compression","path":"/docs/api-reference/next.config.js/compression.md"},{"title":"Static Optimization Indicator","path":"/docs/api-reference/next.config.js/static-optimization-indicator.md"},{"title":"Runtime Configuration","path":"/docs/api-reference/next.config.js/runtime-configuration.md"},{"title":"Disabling x-powered-by","path":"/docs/api-reference/next.config.js/disabling-x-powered-by.md"},{"title":"Disabling ETag Generation","path":"/docs/api-reference/next.config.js/disabling-etag-generation.md"},{"title":"Setting a custom build directory","path":"/docs/api-reference/next.config.js/setting-a-custom-build-directory.md"},{"title":"Configuring the Build ID","path":"/docs/api-reference/next.config.js/configuring-the-build-id.md"},{"title":"Configuring onDemandEntries","path":"/docs/api-reference/next.config.js/configuring-onDemandEntries.md"},{"title":"Ignoring TypeScript Errors","path":"/docs/api-reference/next.config.js/ignoring-typescript-errors.md"},{"title":"exportPathMap","path":"/docs/api-reference/next.config.js/exportPathMap.md"}]}]}],"data":{"description":"Next.js has 2 pre-rendering modes: Static Generation and Server-side rendering. Learn how they work here."},"route":{"title":"Data fetching","path":"/docs/basic-features/data-fetching.md"},"html":"

Data fetching

\n
\n

This document is for Next.js versions 9.3 and up. If you’re using older versions of Next.js, refer to our previous documentation.

\n
\n
\n Examples\n \n
\n

In the Pages documentation, we’ve explained that Next.js has two forms of pre-rendering: Static Generation and Server-side Rendering. In this page, we’ll talk in depths about data fetching strategies for each case. We recommend you to read through the Pages documentation first if you haven’t done so.

\n

We’ll talk about the three unique Next.js functions you can use to fetch data for pre-rendering:

\n\n

In addition, we’ll talk briefly about how to do fetch data on the client side.

\n

getStaticProps (Static Generation)\n \n \n \n \n

\n

If you export an async function called getStaticProps from a page, Next.js will pre-render this page at build time using the props returned by getStaticProps.

\n
export async function getStaticProps(context) {\n  return {\n    props: {}, // will be passed to the page component as props\n  }\n}\n
\n

The context parameter is an object containing the following keys:

\n\n

Simple Example\n \n \n \n \n

\n

Here’s an example which uses getStaticProps to fetch a list of blog posts from a CMS (content management system). This example is also in the Pages documentation.

\n
// posts will be populated at build time by getStaticProps()\nfunction Blog({ posts }) {\n  return (\n    <ul>\n      {posts.map(post => (\n        <li>{post.title}</li>\n      ))}\n    </ul>\n  )\n}\n\n// This function gets called at build time on server-side.\n// It won't be called on client-side, so you can even do\n// direct database queries. See the \"Technical details\" section.\nexport async function getStaticProps() {\n  // Call an external API endpoint to get posts.\n  // You can use any data fetching library\n  const res = await fetch('https://.../posts')\n  const posts = await res.json()\n\n  // By returning { props: posts }, the Blog component\n  // will receive `posts` as a prop at build time\n  return {\n    props: {\n      posts,\n    },\n  }\n}\n\nexport default Blog\n
\n

When should I use getStaticProps?\n \n \n \n \n

\n

You should use getStaticProps if:

\n\n

TypeScript: Use GetStaticProps\n \n \n \n \n

\n

For TypeScript, you can use the GetStaticProps type from next:

\n
import { GetStaticProps } from 'next'\n\nexport const getStaticProps: GetStaticProps = async context => {\n  // ...\n}\n
\n

Reading files: Use process.cwd()\n \n \n \n \n

\n

Files can be read directly from the filesystem in getStaticProps.

\n

In order to do so you have to get the full path to a file.

\n

Since Next.js compiles your code into a separate directory you can't use __dirname as the path it will return will be different from the pages directory.

\n

Instead you can use process.cwd() which gives you the directory where Next.js is being executed.

\n
import fs from 'fs'\nimport path from 'path'\n\n// posts will be populated at build time by getStaticProps()\nfunction Blog({ posts }) {\n  return (\n    <ul>\n      {posts.map(post => (\n        <li>\n          <h3>{post.filename}</h3>\n          <p>{post.content}</p>\n        </li>\n      ))}\n    </ul>\n  )\n}\n\n// This function gets called at build time on server-side.\n// It won't be called on client-side, so you can even do\n// direct database queries. See the \"Technical details\" section.\nexport async function getStaticProps() {\n  const postsDirectory = path.join(process.cwd(), 'posts')\n  const filenames = fs.readdirSync(postsDirectory)\n\n  const posts = filenames.map(filename => {\n    const filePath = path.join(postsDirectory, filename)\n    const fileContents = fs.readFileSync(filePath, 'utf8')\n\n    // Generally you would parse/transform the contents\n    // For example you can transform markdown to HTML here\n\n    return {\n      filename,\n      content: fileContents,\n    }\n  })\n  // By returning { props: posts }, the Blog component\n  // will receive `posts` as a prop at build time\n  return {\n    props: {\n      posts,\n    },\n  }\n}\n\nexport default Blog\n
\n

Technical details\n \n \n \n \n

\n

Only runs at build time\n \n \n \n \n

\n

Because getStaticProps runs at build time, it does not receive data that’s only available during request time, such as query parameters or HTTP headers as it generates static HTML.

\n

Write server-side code directly\n \n \n \n \n

\n

Note that getStaticProps runs only on the server-side. It will never be run on the client-side. It won’t even be included in the JS bundle for the browser. That means you can write code such as direct database queries without them being sent to browsers. You should not fetch an API route from getStaticProps — instead, you can write the server-side code directly in getStaticProps.

\n

Statically Generates both HTML and JSON\n \n \n \n \n

\n

When a page with getStaticProps is pre-rendered at build time, in addition to the page HTML file, Next.js generates a JSON file holding the result of running getStaticProps.

\n

This JSON file will be used in client-side routing through next/link (documentation) or next/router (documentation). When you navigate to a page that’s pre-rendered using getStaticProps, Next.js fetches this JSON file (pre-computed at build time) and uses it as the props for the page component. This means that client-side page transitions will not call getStaticProps as only the exported JSON is used.

\n

Only allowed in a page\n \n \n \n \n

\n

getStaticProps can only be exported from a page. You can’t export it from non-page files.

\n

One of the reasons for this restriction is that React needs to have all the required data before the page is rendered.

\n

Also, you must use export async function getStaticProps() {} — it will not work if you add getStaticProps as a property of the page component.

\n

Runs on every request in development\n \n \n \n \n

\n

In development (next dev), getStaticProps will be called on every request.

\n

Preview Mode\n \n \n \n \n

\n

In some cases, you might want to temporarily bypass Static Generation and render the page at request time instead of build time. For example, you might be using a headless CMS and want to preview drafts before they're published.

\n

This use case is supported by Next.js by the feature called Preview Mode. Learn more on the Preview Mode documentation.

\n

getStaticPaths (Static Generation)\n \n \n \n \n

\n

If a page has dynamic routes (documentation) and uses getStaticProps it needs to define a list of paths that have to be rendered to HTML at build time.

\n

If you export an async function called getStaticPaths from a page that uses dynamic routes, Next.js will statically pre-render all the paths specified by getStaticPaths.

\n
export async function getStaticPaths() {\n  return {\n    paths: [\n      { params: { ... } } // See the \"paths\" section below\n    ],\n    fallback: true or false // See the \"fallback\" section below\n  };\n}\n
\n

The paths key (required)\n \n \n \n \n

\n

The paths key determines which paths will be pre-rendered. For example, suppose that you have a page that uses dynamic routes named pages/posts/[id].js. If you export getStaticPaths from this page and return the following for paths:

\n
return {\n  paths: [\n    { params: { id: '1' } },\n    { params: { id: '2' } }\n  ],\n  fallback: ...\n}\n
\n

Then Next.js will statically generate posts/1 and posts/2 at build time using the page component in pages/posts/[id].js.

\n

Note that the value for each params must match the parameters used in the page name:

\n\n

The fallback key (required)\n \n \n \n \n

\n

The object returned by getStaticPaths must contain a boolean fallback key.

\n

fallback: false\n \n \n \n \n

\n

If fallback is false, then any paths not returned by getStaticPaths will result in a 404 page. You can do this if you have a small number of paths to pre-render - so they are all statically generated during build time. It’s also useful when the new pages are not added often. If you add more items to the data source and need to render the new pages, you’d need to run the build again.

\n

Here’s an example which pre-renders one blog post per page called pages/posts/[id].js. The list of blog posts will be fetched from a CMS and returned by getStaticPaths . Then, for each page, it fetches the post data from a CMS using getStaticProps. This example is also in the Pages documentation.

\n
// pages/posts/[id].js\n\nfunction Post({ post }) {\n  // Render post...\n}\n\n// This function gets called at build time\nexport async function getStaticPaths() {\n  // Call an external API endpoint to get posts\n  const res = await fetch('https://.../posts')\n  const posts = await res.json()\n\n  // Get the paths we want to pre-render based on posts\n  const paths = posts.map(post => ({\n    params: { id: post.id },\n  }))\n\n  // We'll pre-render only these paths at build time.\n  // { fallback: false } means other routes should 404.\n  return { paths, fallback: false }\n}\n\n// This also gets called at build time\nexport async function getStaticProps({ params }) {\n  // params contains the post `id`.\n  // If the route is like /posts/1, then params.id is 1\n  const res = await fetch(`https://.../posts/${params.id}`)\n  const post = await res.json()\n\n  // Pass post data to the page via props\n  return { props: { post } }\n}\n\nexport default Post\n
\n

fallback: true\n \n \n \n \n

\n

If fallback is true, then the behavior of getStaticProps changes:

\n\n

Fallback pages\n \n \n \n \n

\n

In the “fallback” version of a page:

\n\n

Here’s an example that uses isFallback:

\n
// pages/posts/[id].js\nimport { useRouter } from 'next/router'\n\nfunction Post({ post }) {\n  const router = useRouter()\n\n  // If the page is not yet generated, this will be displayed\n  // initially until getStaticProps() finishes running\n  if (router.isFallback) {\n    return <div>Loading...</div>\n  }\n\n  // Render post...\n}\n\n// This function gets called at build time\nexport async function getStaticPaths() {\n  return {\n    // Only `/posts/1` and `/posts/2` are generated at build time\n    paths: [{ params: { id: '1' } }, { params: { id: '2' } }],\n    // Enable statically generating additional pages\n    // For example: `/posts/3`\n    fallback: true,\n  }\n}\n\n// This also gets called at build time\nexport async function getStaticProps({ params }) {\n  // params contains the post `id`.\n  // If the route is like /posts/1, then params.id is 1\n  const res = await fetch(`https://.../posts/${params.id}`)\n  const post = await res.json()\n\n  // Pass post data to the page via props\n  return { props: { post } }\n}\n\nexport default Post\n
\n

When is fallback: true useful?\n \n \n \n \n

\n

fallback: true is useful if your app has a very large number of static pages that depend on data (think: a very large e-commerce site). You want to pre-render all product pages, but then your builds would take forever.

\n

Instead, you may statically generate a small subset of pages and use fallback: true for the rest. When someone requests a page that’s not generated yet, the user will see the page with a loading indicator. Shortly after, getStaticProps finishes and the page will be rendered with the requested data. From now on, everyone who requests the same page will get the statically pre-rendered page.

\n

This ensures that users always have a fast experience while preserving fast builds and the benefits of Static Generation.

\n

When should I use getStaticPaths?\n \n \n \n \n

\n

You should use getStaticPaths if you’re statically pre-rendering pages that use dynamic routes.

\n

TypeScript: Use GetStaticPaths\n \n \n \n \n

\n

For TypeScript, you can use the GetStaticPaths type from next:

\n
import { GetStaticPaths } from 'next'\n\nexport const getStaticPaths: GetStaticPaths = async () => {\n  // ...\n}\n
\n

Technical details\n \n \n \n \n

\n

Use together with getStaticProps\n \n \n \n \n

\n

When you use getStaticProps on a page with dynamic route parameters, you must use getStaticPaths.

\n

You cannot use getStaticPaths with getServerSideProps.

\n

Only runs at build time on server-side\n \n \n \n \n

\n

getStaticPaths only runs at build time on server-side.

\n

Only allowed in a page\n \n \n \n \n

\n

getStaticPaths can only be exported from a page. You can’t export it from non-page files.

\n

Also, you must use export async function getStaticPaths() {} — it will not work if you add getStaticPaths as a property of the page component.

\n

Runs on every request in development\n \n \n \n \n

\n

In development (next dev), getStaticPaths will be called on every request.

\n

getServerSideProps (Server-side Rendering)\n \n \n \n \n

\n

If you export an async function called getServerSideProps from a page, Next.js will pre-render this page on each request using the data returned by getServerSideProps.

\n
export async function getServerSideProps(context) {\n  return {\n    props: {}, // will be passed to the page component as props\n  }\n}\n
\n

The context parameter is an object containing the following keys:

\n\n

Simple example\n \n \n \n \n

\n

Here’s an example which uses getServerSideProps to fetch data at request time and pre-renders it. This example is also in the Pages documentation.

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

When should I use getServerSideProps?\n \n \n \n \n

\n

You should use getServerSideProps only if you need to pre-render a page whose data must be fetched at request time. Time to first byte (TTFB) will be slower than getStaticProps because the server must compute the result on every request, and the result cannot be cached by a CDN without extra configuration.

\n

If you don’t need to pre-render the data, then you should consider fetching data on the client side. Click here to learn more.

\n

TypeScript: Use GetServerSideProps\n \n \n \n \n

\n

For TypeScript, you can use the GetServerSideProps type from next:

\n
import { GetServerSideProps } from 'next'\n\nexport const getServerSideProps: GetServerSideProps = async context => {\n  // ...\n}\n
\n

Technical details\n \n \n \n \n

\n

Only runs on server-side\n \n \n \n \n

\n

getServerSideProps only runs on server-side and never runs on the browser. If a page uses getServerSideProps , then:

\n\n

Only allowed in a page\n \n \n \n \n

\n

getServerSideProps can only be exported from a page. You can’t export it from non-page files.

\n

Also, you must use export async function getServerSideProps() {} — it will not work if you add getServerSideProps as a property of the page component.

\n

Fetching data on the client side\n \n \n \n \n

\n

If your page contains frequently updating data, and you don’t need to pre-render the data, you can fetch the data on the client side. An example of this is user-specific data. Here’s how it works:

\n\n

This approach works well for user dashboard pages, for example. Because a dashboard is a private, user-specific page, SEO is not relevant and the page doesn’t need to be pre-rendered. The data is frequently updated, which requires request-time data fetching.

\n

SWR\n \n \n \n \n

\n

The team behind Next.js has created a React hook for data fetching called SWR. We highly recommend it if you’re fetching data on the client side. It handles caching, revalidation, focus tracking, refetching on interval, and more. And you can use it like so:

\n
import useSWR from 'swr'\n\nfunction Profile() {\n  const { data, error } = useSWR('/api/user', fetch)\n\n  if (error) return <div>failed to load</div>\n  if (!data) return <div>loading...</div>\n  return <div>hello {data.name}!</div>\n}\n
\n

Check out the SWR documentation to learn more.

\n

Learn more\n \n \n \n \n

\n

We recommend you to read the following sections next:

\n
\n

Preview Mode

Learn more about the preview mode in Next.js.
\n
\n
\n

Routing

Learn more about routing in Next.js.
\n
\n
\n

TypeScript

Add TypeScript to your pages.
\n
"},"__N_SSG":true}