Next.js - Dinamik Yönlendirme
Next.js'de dinamik olarak rotalar oluşturabiliriz. Bu örnekte, anında sayfalar ve bunların yönlendirmelerini oluşturacağız.
Step 1. Define [id].js file- [id] .js, id'nin göreli yol olacağı dinamik sayfayı temsil eder. Bu dosyayı pages / post dizininde tanımlayın.
Step 2. Define lib/posts.js- posts.js, kimlikleri ve içerikleri temsil eder. lib dizini kök dizinde oluşturulacak.
[kimlik] .js
[İd] .js dosyasını, yolları ayarlayan getStaticPaths () yöntemiyle güncelleyin ve içeriği id'ye göre almak için getStaticProps () yöntemini kullanın.
import Link from 'next/link'
import Head from 'next/head'
import Container from '../../components/container'
import { getAllPostIds, getPostData } from '../../lib/posts'
export default function Post({ postData }) {
return (
<Container>
{postData.id}
<br />
{postData.title}
<br />
{postData.date}
</Container>
)
}
export async function getStaticPaths() {
const paths = getAllPostIds()
return {
paths,
fallback: false
}
}
export async function getStaticProps({ params }) {
const postData = getPostData(params.id)
return {
props: {
postData
}
}
}
posts.js
posts.js, kimlikleri almak için getAllPostIds () ve karşılık gelen içerikleri almak için getPostData () içerir.
export function getPostData(id) {
const postOne = {
title: 'One',
id: 1,
date: '7/12/2020'
}
const postTwo = {
title: 'Two',
id: 2,
date: '7/12/2020'
}
if(id == 'one'){
return postOne;
}else if(id == 'two'){
return postTwo;
}
}
export function getAllPostIds() {
return [{
params: {
id: 'one'
}
},
{
params: {
id: 'two'
}
}
];
}
Next.js Sunucusunu Başlatın
Sunucuyu başlatmak için aşağıdaki komutu çalıştırın -.
npm run dev
> [email protected] dev \Node\nextjs
> next
ready - started server on http://localhost:3000
event - compiled successfully
event - build page: /
wait - compiling...
event - compiled successfully
event - build page: /next/dist/pages/_error
wait - compiling...
event - compiled successfully
Çıkışı Doğrula
Bir tarayıcıda localhost: 3000 / posts / birini açın ve aşağıdaki çıktıyı göreceksiniz.
Bir tarayıcıda localhost: 3000 / posts / iki açın ve aşağıdaki çıktıyı göreceksiniz.