[React-hook-form] 일반 버튼 눌렀을 때 formData 가져오기
2022. 12. 14. 15:39
반응형
type='submit' 이 아닌 type='button' 인 버튼을 눌렀을 때 react-hook-form의 formData를 가져올 수 있다.
const { handleSubmit, register } = methods
...
<form onSubmit={handleSubmit(onSubmit)}>
<Button type="button" onClick={handleSubmit((d) => console.log(d))}>
임시저장
</Button>
</form>
참고
https://stackoverflow.com/questions/66176755/react-js-multiple-submit-buttons-react-hook-form
반응형
'한 걸음 > React & Next.js' 카테고리의 다른 글
[Recharts + typescript] 리차트(recharts)에서 커스텀 label 만들기 (feat.타입스크립트) (0) | 2022.12.19 |
---|---|
[Recharts + typescript] 리차트(recharts)에서 height 고정값 쓰지 않는 법 (0) | 2022.12.19 |
[axios] post API custom hook으로 만들기 (0) | 2022.12.07 |
[next.js + axios + django] CSRF 검증에 실패했습니다 error (1) | 2022.11.24 |
[Vite + eslint] 절대경로 설정하기 (0) | 2022.09.13 |