-
watch 메서드를 활용하여 감시하기React.js/React-hook-form 2024. 7. 30. 14:27728x90
useEffect(() => { const subscirbe = watch((data, { name }) => { console.log(data); console.log(name); }); return () => subscirbe.unsubscribe(); }, [watch]);
useEffect와 watch를 이용하여 field가 변경 될때를 감시 할 수 있다.
728x90'React.js > React-hook-form' 카테고리의 다른 글
react-hook-form에서 useController 커스텀 훅 사용 (0) 2024.06.25 react-hook-form Controller를 이용하여 재사용 컴포넌트를 만들때 control props 전달 타입체커 환경 에러 (0) 2024.05.11 react-hook-form Controller 사용시 rules validate가 동작하지 않을때 (0) 2024.05.11 react-hook-form과 다른 라이브러와 함께 사용 (0) 2024.05.02 react-hook-form의 getValues와 setValue를 이용하여 커스텀 훅을 만들때 Path<T> 에러 (0) 2023.10.30