Next.js - ข้อมูลเมตา
ใน Next.js เราสามารถแก้ไขส่วนหัวของแต่ละหน้าตอบสนองได้อย่างง่ายดายด้วยความช่วยเหลือของ <Head> ส่วนประกอบปฏิกิริยาที่ถูกสร้างขึ้น
มาอัปเดตโปรเจ็กต์ nextjs ที่ใช้ในบทPages
อัพเดท index.js ดังนี้ -
import Link from 'next/link'
import Head from 'next/head'
function HomePage() {
return (
<>
<Head>
<title>Welcome to Next.js!</title>
</Head>
<div>Welcome to Next.js!</div>
<Link href="/posts/first"><a>First Post</a></Link>
<br/>
<img src="/logo.png" alt="TutorialsPoint Logo" />
</>
)
}
export default HomePage
อัปเดต first.js ดังนี้ -
import Link from 'next/link'
import Head from 'next/head'
export default function FirstPost() {
return (
<>
<Head>
<title>My First Post</title>
</Head>
<h1>My First Post</h1>
<h2>
<Link href="/">
<a>Home</a>
</Link>
</h2>
</>
)
}
ที่นี่เราได้เพิ่มการอ้างอิงถึง logo.png ในไฟล์ index.js
เริ่มเซิร์ฟเวอร์ Next.js
รันคำสั่งต่อไปนี้เพื่อเริ่มเซิร์ฟเวอร์ -
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
ตรวจสอบผลลัพธ์
เปิด localhost: 3000 ในเบราว์เซอร์และคุณจะเห็นผลลัพธ์ต่อไปนี้
คลิกลิงก์หน้าแรกและตรวจสอบว่ามีการเปลี่ยนแปลงชื่อเรื่องในหน้าโพสต์แรกเช่นกัน