250x250
반응형
- Today
- Total
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 훈련소
- 공익 훈련소
- angular
- 자바스크립트
- 오블완
- svgr
- react life sycle
- resolved to branch.
- 리액트 알림
- localStorage
- useRouter
- useformstatus
- 사회복무요원 훈련소
- react
- 오라클클라우드
- server action
- 리액트 라이프사이클
- next.js toast
- 비동기 병렬처리
- sessionStorage
- 훈련소 후기
- The above error occurred in the
- 리액트
- NextJS
- styled-component
- react toast
- query param
- 자바스크립트 순수함수
- no-use-before-define
- 산업기능요원 훈련소
Archives
목록2024/11 (1)
아 그거 뭐였지
[Next.js] useFormStatus로 Server Action Loading 처리 해보기
Next.js의 Server Action과 Form을 사용해서 로그인 기능을 구현하고있었는데, 문득 Api 로딩처리는 어떻게하나 싶었다. Client Side에서는 react-query를 사용하거나 직접 Loading 상태를 처리해주면 됐었다. 예시코드....// react-queryconst { isPending } = useMutation()if(isPending) return // fetch apiconst [isLoading, setIsLoading] = useState(false);const login = async ()=>{ setIsLoaindg(true); try{ ... 로그인 로직 } finally(){ setIsLoading(false); ..
Front-End
2024. 11. 27. 02:14