๋ชฉ๋กuseMutation (1)
๐ค ์์งlog ๐ค
[REACT] useQuery ์ useMutation
๐ก useQuery API์ฐ๋์ ํนํ๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ก Hook์ ๊ธฐ๋ฐ์ผ๋ก ๋ฐ์ดํฐ ๋ก๋ฉ์ ํธํ๊ฒ ๊ตฌํํ๋๋ก ๋์์ค๋๋ค. ๋ฐํ ๊ฐ์ ํ์ฉํ์ฌ ์ฑ๊ณต, ์คํจ ์ฒ๋ฆฌ๊ฐ ๊ฐ๋ฅํฉ๋๋ค. ( isFetching, isLoading, error, state ๋ฑ ) Status isLoading : ํ์ฌ ๋ฐ์ดํฐ ์์ฒญ ์ค isError : ์ค๋ฅ ๋ฐ์ isSuccess : ๋ฐ์ดํฐ ์์ฒญ ์ฑ๊ณต data : ์์ฒญ ์ฑ๊ณตํ ๋ฐ์ดํฐ refetch : ๋ค์ ์์ฒญ์ ์์ํ๋ ํจ์ const Ex = () => { const result = useQuery('posts', postData); const { data, error, isLoading } = result; if (isLoading) return Loading...; if (error)..
๐ React
2023. 3. 30. 12:04