React.js/React-hook-form

watch 메서드를 활용하여 감시하기

Dev갱이 2024. 7. 30. 14:27
728x90
useEffect(() => {
    const subscirbe = watch((data, { name }) => {
        console.log(data);
        console.log(name);
    });

    return () => subscirbe.unsubscribe();
}, [watch]);

 

useEffect와 watch를 이용하여 field가 변경 될때를 감시 할 수 있다.
728x90