Notice
Recent Posts
Recent Comments
«   2024/07   »
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 31
Tags more
Archives
Today
Total
관리 메뉴

HYEWON JUNG의 개발일지

20240125 TIL 간이 유효성 검사 추가하기 본문

개발일지

20240125 TIL 간이 유효성 검사 추가하기

혜won 2024. 1. 26. 12:05

주말에.. 추가/

  const [errors, setErrors] = useState({
    title: '',
    category: '',
    content: ''
  });

  const validateForm = () => {
    let isValid = true;
    const newErrors = {
      title: '',
      category: '',
      content: ''
    };

    if (!formValues.title) {
      newErrors.title = '제목은 필수입니다';
      isValid = false;
    }
    if (!formValues.category) {
      newErrors.category = '카테고리는 필수입니다';
      isValid = false;
    }
    if (!formValues.content) {
      newErrors.content = '내용은 필수입니다';
      isValid = false;
    }

    setErrors(newErrors);
    return isValid;
  };