iT邦幫忙

2023 iThome 鐵人賽

DAY 5
0

在vs code 底下直接創建資料夾/檔案 的小技巧

操作方法:直接新增檔案 資料夾名稱/檔名.副檔名
圖片

接下來要用上面的方法在專案裡多建立幾個頁面

app/about/page.jsx
app/reviews/hellow-knight/page.jsx
app/reviews/hellblade/page.jsx

完成後,專案目錄結構如下:
圖片

app/about/page.jsx 檔案內容

function AboutPage() {
    return (
        <div>
            <h1>About</h1>
            <p>A website created to learn Next.js</p>
        </div>
    )
}

export default AboutPage

app/reviews/hellow-knight/page.jsx 檔案內容

function HollowKnightPage() {
    return (
        <div>
            <h1>Hollow Knight</h1>
            <p>This will be the reviews for Hollow Knight</p>
        </div>
    )
}


export default HollowKnightPage

app/reviews/hellblade/page.jsx 檔案內容

function HellbladePage() {
    return (
        <div>
            <h1>Hellblade</h1>
            <p>This will be the reviews for Hellblade</p>
        </div>
    )
}

export default HellbladePage

由昨天的內容可以推斷上面檔案生成的網址為

http://localhost:3000/about
http://localhost:3000/reviews/hollow-knight
http://localhost:3000/reviews/hellblade

大叔的鐵人賽第五天結束 :)


上一篇
DAY04 - 建立App路由
下一篇
DAY06 - 使用Link取代a標籤
系列文
中年大叔(40+)前端自學筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言