Context API in ReactJS
github Source code Context API in ReactJS Context API 是 ReactJS 中的一項功能,它允許跨組件樹共享資料,而不必通過樹的每一層向下傳遞 props。它提供了一種通過組件樹傳遞資料而無需使用 props 的方法,使用 props 這對於具有多層組件的大型應用程序來說可能會變得很麻煩。 使用 vite 建立一支 react web app 樣版 使用 yarn 語法 $ yarn create vite react-context -- --template react && cd react-context $ yarn $ yarn dev 使用 npm 語法 $ npm create vite react-context -- --template react && cd react-context $ npm i $ npm run dev 使用 props 來傳遞資料 先來看看原來使用 props 來傳遞資料給子元件的方式。...