We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ํํ์ ์ฒซ๋ฒ์งธ ์์ : ์ ๋ค๋ฆญ์ผ๋ก ์ง์ ํ S ํ์
ํํ์ ๋๋ฒ์งธ ์์ : ์ํ๋ฅผ ์ ๋ฐ์ดํธ ํ ์ ์๋ Dispatch ํ์ ์ ํจ์
์ํ๋ฅผ ๊ด๋ฆฌํ๊ธฐ ์ํ ํ
import { useState } from "react"; const MemberList = () => { const [memberList, setMemberList] = useState([ { name: "KingBaedal", age: 10, }, { name: "MayBaedal", age: 9, }, ]); const sumAge = memberList.reduce((sum, member) => sum + member.age, 0); const addMember = () => { setMemberList([ ...memberList, { name: "DokgoBaedal", age: 11, }, ]); } ; };
interface Member { name: string; age: number; }
useEffect ( EffectCallback, deps )
๋ ๋๋ง ์ดํ์ ๋ฆฌ์กํธ ํจ์ ์ปดํฌ๋ํธ์ ์ด๋ค ์ผ์ ์ํํด์ผ ํ๋์ง ์๋ ค์ค
์ฒซ๋ฒ์งธ ์ธ์๋ Promiseํ์ ์ ๋ฐํํ์ง ์๊ธฐ ๋๋ฌธ์ ๋น๋๊ธฐ ํจ์๊ฐ ๋ค์ด๊ฐ ์ ์๋ค.
๊ฒฝ์ ์ํ๋ฅผ ๋ง๊ธฐ์ํจ
๋๋ฒ์งธ ์ธ์์ธ deps๋ effect๊ฐ ์ํ๋๊ธฐ ์ํ ์กฐ๊ฑด์ ๋์ดํ๋ค.
useEffect๋ deps์ ๋ณ๊ฒฝ์ ์์ ๋น๊ต๋ก๋ง ํ๋จํ๊ธฐ์ ๋ถ๋ชจ์์ ๋ฐ์ ์ธ์๋ฅผ deps๋ก ์์ฑํ ๊ฒฝ์ฐ ์ฒ๋ผ ๊ฐ์ฒด์ ์ฐธ์กฐ ๊ฐ์ด ๋ณ๊ฒฝ๋๋ฉด ์ฝ๋ฐฑํจ์๋ฅผ ์คํํ๋ค
์๋์น ์๋ ์ฌ๋๋๋ง์ ๋ฐ๋ณตํ ์ ์๋ค.
const [name, setName] = useState(""); useEffect(() => { setName("๋ฐฐ๋ฌ์ด") },[]); return ( <div> {`์๋ ํ์ธ์, ${name}๋!`} </div> ); //์ปดํฌ๋ํธ๊ฐ ๋ ๋๋ง ๋ ํ, name์ด ๋น์นธ์ผ๋ก ๋ ๋๋ง //setName์ด ์๋ฃ ๋ ๋ ๊น์ง ๋น์นธ ์ ์ง
useLayoutEffect
useMemo, useCallback
์ด์ ์ ์์ฑ๋ ๊ฐ ๋๋ ํจ์๋ฅผ ๊ธฐ์ตํ๋ฉฐ, ๋์ผํ ๊ฐ๊ณผ ํจ์๋ฅผ ๋ฐ๋ณตํด์ ์์ฑํ์ง ์๋๋ก ํ๋ค.
์ด๋ค ๊ฐ์ ๊ณ์ฐํ๋ ๋ฐ ์ค๋ ์๊ฐ์ด ๊ฑธ๋ฆด ๋๋ ๋ ๋๋ง์ด ์์ฃผ ๋ฐ์ํ๋ form์์ ์ฌ์ฉ
type DependencyList = ReadonlyArray<any>; function useMemo<T>(factory: () => T, deps: DependencyList | undefined): T; function useCallback<t extends (...args: any[]) => any>(callback: T, deps:DependencyList):T;
useRef
The text was updated successfully, but these errors were encountered:
dxwwan
No branches or pull requests
๐ชํ
1. ๋ฆฌ์กํธ ํ
useState
ํํ์ ์ฒซ๋ฒ์งธ ์์ : ์ ๋ค๋ฆญ์ผ๋ก ์ง์ ํ S ํ์
ํํ์ ๋๋ฒ์งธ ์์ : ์ํ๋ฅผ ์ ๋ฐ์ดํธ ํ ์ ์๋ Dispatch ํ์ ์ ํจ์
์ํ๋ฅผ ๊ด๋ฆฌํ๊ธฐ ์ํ ํ
์์กด์ฑ ๋ฐฐ์ด์ ์ฌ์ฉํ๋ ํ
useEffect ( EffectCallback, deps )
๋ ๋๋ง ์ดํ์ ๋ฆฌ์กํธ ํจ์ ์ปดํฌ๋ํธ์ ์ด๋ค ์ผ์ ์ํํด์ผ ํ๋์ง ์๋ ค์ค
์ฒซ๋ฒ์งธ ์ธ์๋ Promiseํ์ ์ ๋ฐํํ์ง ์๊ธฐ ๋๋ฌธ์ ๋น๋๊ธฐ ํจ์๊ฐ ๋ค์ด๊ฐ ์ ์๋ค.
๊ฒฝ์ ์ํ๋ฅผ ๋ง๊ธฐ์ํจ
๋๋ฒ์งธ ์ธ์์ธ deps๋ effect๊ฐ ์ํ๋๊ธฐ ์ํ ์กฐ๊ฑด์ ๋์ดํ๋ค.
useEffect๋ deps์ ๋ณ๊ฒฝ์ ์์ ๋น๊ต๋ก๋ง ํ๋จํ๊ธฐ์ ๋ถ๋ชจ์์ ๋ฐ์ ์ธ์๋ฅผ deps๋ก ์์ฑํ ๊ฒฝ์ฐ ์ฒ๋ผ ๊ฐ์ฒด์ ์ฐธ์กฐ ๊ฐ์ด ๋ณ๊ฒฝ๋๋ฉด ์ฝ๋ฐฑํจ์๋ฅผ ์คํํ๋ค
์๋์น ์๋ ์ฌ๋๋๋ง์ ๋ฐ๋ณตํ ์ ์๋ค.
useLayoutEffect
useMemo, useCallback
์ด์ ์ ์์ฑ๋ ๊ฐ ๋๋ ํจ์๋ฅผ ๊ธฐ์ตํ๋ฉฐ, ๋์ผํ ๊ฐ๊ณผ ํจ์๋ฅผ ๋ฐ๋ณตํด์ ์์ฑํ์ง ์๋๋ก ํ๋ค.
์ด๋ค ๊ฐ์ ๊ณ์ฐํ๋ ๋ฐ ์ค๋ ์๊ฐ์ด ๊ฑธ๋ฆด ๋๋ ๋ ๋๋ง์ด ์์ฃผ ๋ฐ์ํ๋ form์์ ์ฌ์ฉ
useRef
ISSUE
The text was updated successfully, but these errors were encountered: