본문 바로가기
React

[React] input value check 인풋 값 체크

by 바나냥 2020. 6. 4.
  handleCreate = () => {
    const { input, todos } = this.state;
    if (this.state.input != '') {
      this.setState({
        input: '', //input 내용 비우기
        todos: todos.concat({
          id: this.id++,
          text: input,
          checked: false,
        }),
      });
    }
  };

댓글