iT邦幫忙

2021 iThome 鐵人賽

DAY 25
2
Modern Web

React.js 30 天學習全記錄系列 第 25

[ Day 25 ] 實作一個 React.js 網站 1/5

  • 分享至 

  • xImage
  •  

https://ithelp.ithome.com.tw/upload/images/20211008/20134153bTPjySrJUU.png
今天來到這次鐵人賽的最後一個章節:實作一個 React.js 的網站。這個網站會結合前面幾天所介紹過的 React.js 基礎來實作,所以在撰寫的同時也會一起複習過去學習的概念和功能,希望透過這個實作網站的章節讓大家更清楚自己這幾天所學可以如何應用在實際的開發中。

這次的實作是採用 Academind 的 React Crash Course for Beginners 2021 影片中的範例,會實作出一個 Meetups 的網站,你可以在網站新增 Meetups 或是將其他的 Meetups 加入我的最愛當中。實作的結果會如下圖所示:
https://ithelp.ithome.com.tw/upload/images/20211009/20134153z6qnBhHKKS.png
那廢話不多說,馬上開始囉~


專案建置和套件基本設定

  • 開啟終端機並移動到要建立專案的位置或資料夾內輸入 npx create-react-app 你的專案名稱,這次實作的專案名稱我取為 meetup-react-sample
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153mUKej4uq5e.png

  • 移動到剛剛創建的 meetup-react-sample 資料夾內,並輸入 npm install react-router-dom 將 React Router 加入到我們的專案中。
    https://ithelp.ithome.com.tw/upload/images/20211008/201341536wOpv6kGbY.png

  • 接著輸入 npm start 開啟專案 meetup-react-sample
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153FjioQ2Mc6w.png

  • 打開 src 資料夾中的 index.js 輸入 import { BrowserRouter } from "react-router-dom"; ,將 react-router-dom 的套件引入到檔案中後,在撰寫 ReactDOM.render()其中的 Router 設定
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153D19NOuuoCW.png

  • index.css 的檔案中新增以下的樣式內容和設定。
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153MN2M1hCmrL.png

  • react-app 中預設的不必要檔案一併移除(圖中所圈選的檔案都要移除)。
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153YyjVnFmokv.png

  • src 資料夾內新增一個資料夾名稱為 pages ,並在該資料夾內新增三個檔案 AllMeetup.jsFavorites.jsNewMeetup.js。( pages 資料夾內放的就是每一個不同頁面的 JavaScript 檔案)
    https://ithelp.ithome.com.tw/upload/images/20211009/20134153oTroJc1Lvc.png

  • 在上述的三個檔案中都新增 Function Component
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153kYMpwCpmnQ.png
    https://ithelp.ithome.com.tw/upload/images/20211008/20134153yTydOPD6P0.png
    https://ithelp.ithome.com.tw/upload/images/20211009/20134153a7C7CNRyKO.png

  • App.js 檔案中匯入剛才建立的三個 pages 並引用 RouteSwitch 這兩個 react-router-dom 的方法。
    https://ithelp.ithome.com.tw/upload/images/20211009/20134153KSdxSsCSBU.png

  • 在 Function Component 的 App 當中使用 Router 的方法設定專案的路由,並在 <AllMeetupsPage /> 外層所包覆的路由加上 exact屬性。
    https://ithelp.ithome.com.tw/upload/images/20211009/20134153sFqROjqQ9c.png


今天先讓大家把專案的基本設定和套件都下載設定好,明天開始就要實作邏輯的部份了~
備註:附上今天實作部分的 GitHub Repository 連結

另外,今天也應用到了 [ Day 03 ] 建立一個 React.js 專案 [ Day 20 ] 路由管理 - React Router 1/2 中學過的基礎概念,如果有看不懂的設定或內容的話可以傳送門去複習一下喔~

有任何問題都非常歡迎提出和指教!
我們下篇見ʘ‿ʘ


上一篇
[ Day 24 ] React 中的樣式設定
下一篇
[ Day 26 ] 實作一個 React.js 網站 2/5
系列文
React.js 30 天學習全記錄30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言