react-code-dataset
/
next.js
/docs
/01-app
/03-api-reference
/03-file-conventions
/dynamic-routes.mdx
| --- | |
| title: Dynamic Route Segments | |
| nav_title: Dynamic Segments | |
| description: Dynamic Route Segments can be used to programmatically generate route segments from dynamic data. | |
| related: | |
| title: Next Steps | |
| description: For more information on what to do next, we recommend the following sections | |
| links: | |
| - app/api-reference/functions/generate-static-params | |
| --- | |
| When you don't know the exact route segment names ahead of time and want to create routes from dynamic data, you can use Dynamic Segments that are filled in at request time or prerendered at build time. | |
| ## Convention | |
| A Dynamic Segment can be created by wrapping a folder's name in square brackets: `[folderName]`. For example, a blog could include the following route `app/blog/[slug]/page.js` where `[slug]` is the Dynamic Segment for blog posts. | |
| ```tsx filename="app/blog/[slug]/page.tsx" switcher | |
| export default async function Page({ | |
| params, | |
| }: { | |
| params: Promise<{ slug: string }> | |
| }) { | |
| const { slug } = await params | |
| return <div>My Post: {slug}</div> | |
| } | |
| ``` | |
| ```jsx filename="app/blog/[slug]/page.js" switcher | |
| export default async function Page({ params }) { | |
| const { slug } = await params | |
| return <div>My Post: {slug}</div> | |
| } | |
| ``` | |
| Dynamic Segments are passed as the `params` prop to [`layout`](/docs/app/api-reference/file-conventions/layout), [`page`](/docs/app/api-reference/file-conventions/page), [`route`](/docs/app/api-reference/file-conventions/route), and [`generateMetadata`](/docs/app/api-reference/functions/generate-metadata#generatemetadata-function) functions. | |
| | Route | Example URL | `params` | | |
| | ------------------------- | ----------- | --------------- | | |
| | `app/blog/[slug]/page.js` | `/blog/a` | `{ slug: 'a' }` | | |
| | `app/blog/[slug]/page.js` | `/blog/b` | `{ slug: 'b' }` | | |
| | `app/blog/[slug]/page.js` | `/blog/c` | `{ slug: 'c' }` | | |
| ### In Client Components | |
| In a Client Component **page**, dynamic segments from props can be accessed using the [`use`](https://react.dev/reference/react/use) hook. | |
| ```tsx filename="app/blog/[slug]/page.tsx" switcher | |
| 'use client' | |
| import { use } from 'react' | |
| export default function BlogPostPage({ | |
| params, | |
| }: { | |
| params: Promise<{ slug: string }> | |
| }) { | |
| const { slug } = use(params) | |
| return ( | |
| <div> | |
| <p>{slug}</p> | |
| </div> | |
| ) | |
| } | |
| ``` | |
| ```jsx filename="app/blog/[slug]/page.js" switcher | |
| 'use client' | |
| import { use } from 'react' | |
| import { useParams } from 'next/navigation' | |
| export default function BlogPostPage({ params }) { | |
| const { slug } = use(params) | |
| return ( | |
| <div> | |
| <p>{slug}</p> | |
| </div> | |
| ) | |
| } | |
| ``` | |
| Alternatively Client Components can use the [`useParams`](/docs/app/api-reference/functions/use-params) hook to access the `params` anywhere in the Client Component tree. | |
| ### Catch-all Segments | |
| Dynamic Segments can be extended to **catch-all** subsequent segments by adding an ellipsis inside the brackets `[...folderName]`. | |
| For example, `app/shop/[...slug]/page.js` will match `/shop/clothes`, but also `/shop/clothes/tops`, `/shop/clothes/tops/t-shirts`, and so on. | |
| | Route | Example URL | `params` | | |
| | ---------------------------- | ------------- | --------------------------- | | |
| | `app/shop/[...slug]/page.js` | `/shop/a` | `{ slug: ['a'] }` | | |
| | `app/shop/[...slug]/page.js` | `/shop/a/b` | `{ slug: ['a', 'b'] }` | | |
| | `app/shop/[...slug]/page.js` | `/shop/a/b/c` | `{ slug: ['a', 'b', 'c'] }` | | |
| ### Optional Catch-all Segments | |
| Catch-all Segments can be made **optional** by including the parameter in double square brackets: `[[...folderName]]`. | |
| For example, `app/shop/[[...slug]]/page.js` will **also** match `/shop`, in addition to `/shop/clothes`, `/shop/clothes/tops`, `/shop/clothes/tops/t-shirts`. | |
| The difference between **catch-all** and **optional catch-all** segments is that with optional, the route without the parameter is also matched (`/shop` in the example above). | |
| | Route | Example URL | `params` | | |
| | ------------------------------ | ------------- | --------------------------- | | |
| | `app/shop/[[...slug]]/page.js` | `/shop` | `{ slug: undefined }` | | |
| | `app/shop/[[...slug]]/page.js` | `/shop/a` | `{ slug: ['a'] }` | | |
| | `app/shop/[[...slug]]/page.js` | `/shop/a/b` | `{ slug: ['a', 'b'] }` | | |
| | `app/shop/[[...slug]]/page.js` | `/shop/a/b/c` | `{ slug: ['a', 'b', 'c'] }` | | |
| ### TypeScript | |
| When using TypeScript, you can add types for `params` depending on your configured route segment. | |
| | Route | `params` Type Definition | | |
| | ----------------------------------- | ---------------------------------------- | | |
| | `app/blog/[slug]/page.js` | `{ slug: string }` | | |
| | `app/shop/[...slug]/page.js` | `{ slug: string[] }` | | |
| | `app/shop/[[...slug]]/page.js` | `{ slug?: string[] }` | | |
| | `app/[categoryId]/[itemId]/page.js` | `{ categoryId: string, itemId: string }` | | |
| ## Behavior | |
| - Since the `params` prop is a promise. You must use `async`/`await` or React's use function to access the values. | |
| - In version 14 and earlier, `params` was a synchronous prop. To help with backwards compatibility, you can still access it synchronously in Next.js 15, but this behavior will be deprecated in the future. | |
| ## Examples | |
| ### With `generateStaticParams` | |
| The [`generateStaticParams`](/docs/app/api-reference/functions/generate-static-params) function can be used to [statically generate](/docs/app/getting-started/partial-prerendering#static-rendering) routes at build time instead of on-demand at request time. | |
| ```tsx filename="app/blog/[slug]/page.tsx" switcher | |
| export async function generateStaticParams() { | |
| const posts = await fetch('https://.../posts').then((res) => res.json()) | |
| return posts.map((post) => ({ | |
| slug: post.slug, | |
| })) | |
| } | |
| ``` | |
| ```jsx filename="app/blog/[slug]/page.js" switcher | |
| export async function generateStaticParams() { | |
| const posts = await fetch('https://.../posts').then((res) => res.json()) | |
| return posts.map((post) => ({ | |
| slug: post.slug, | |
| })) | |
| } | |
| ``` | |
| When using `fetch` inside the `generateStaticParams` function, the requests are [automatically deduplicated](/docs/app/guides/caching#request-memoization). This avoids multiple network calls for the same data Layouts, Pages, and other `generateStaticParams` functions, speeding up build time. | |