🤍 은지log 🤍

[REACT] 이벤트 핸들러 ( Event handler ) 본문

💙 React

[REACT] 이벤트 핸들러 ( Event handler )

Eun_zii 2022. 10. 7. 17:44

onChange, Click, KeyPress

import { useState } from 'react'

const EventPractice = () => {
  const [message, setMessage] = useState('')

  const handleClick = () => {
    alert(message)
  }
  const handleKeyPress = (e) => {
    if (e.key === 'Enter') {
      alert(message)
    }
  }

  return (
    <div>
      <h1>이벤트 연습</h1>
      <input
        type="text"
        name="message"
        placeholder="아무거나 입력해 보세요"
        onChange={(e) => {
          setMessage(e.target.value)
        }}
        onKeyPress={handleKeyPress}
      />
      <button onClick={handleClick}>확인</button>
    </div>
  )
}

export default EventPractice
import { useState } from 'react'

const EventPractice = () => {
  
  const [username, setUsername] = useState('')
  const [message, setMessage] = useState('')
  
  const onChangeUssername = (e) => setUsername(e.target.value)
  
  const onChangeMessage = (e) => setMessage(e.target.value)
  
  const onClick = () => {
    alert(username + ': ' + message)
    setUsername('')
    setMessage('')
  }
  
  const onKeyPress = (e) => {
    if (e.key === 'Enter') {
      alert(message)
    }
  }
  
  return (
    <div>
      <h1>이벤트 연습</h1>
      <input
        type="text"
        name="username"
        placeholder="사용자명"
        onChange={onChangeUssername}
        value={username}
      />
      <input
        type="text"
        name="message"
        placeholder="아무거나 입력해 보세요"
        value={message}
        onChange={onChangeMessage}
        onKeyPress={onKeyPress}
      ></input>
      <button onClick={onClick}>확인</button>
    </div>
  )
}

export default EventPractice

 

  • input을 사용해서 useState를 관리할때는 반드시 value를 사용해야한다.
  • input 사용때 마다 각각의 input에 대한 useState 와 onChange함수를 선언해줘야 한다.(ex. input이 10개있으면 useState도 10개,onChange함수도 10개)
  • 🗂 줄이는 방법은 객체에 넣어서 관리 🗂
    form 으로 관리할때는 input 해야할 데이터가 많으니 객체로 관리해야함.
import { useState } from 'react'

const EventPractice = () => {
  const [form, setForm] = useState({
    username: '',
    message: '',
  })

  const { username, message } = form // 비구조화할당

  const onChange = (e) => {
    const newForm = {
      ...form,
      [e.target.name]: e.target.value, 
      // [] 넣어줌으로서 객체 생성과 동시에 동적인 key값 설정
    }
    setForm(newForm)
  }
  const onClick = () => {
    alert(username + ': ' + message)
  }

  const onKeyPress = (e) => {
    if (e.key === 'Enter') {
      alert(message)
    }
  }

  return (
    <div>
      <h1>이벤트 연습</h1>
      <input
        type="text"
        name="username"
        placeholder="사용자명"
        onChange={onChange}
        value={username}
      />
      <input
        type="text"
        name="message"
        placeholder="아무거나 입력해 보세요"
        value={message}
        onChange={onChange}
        onKeyPress={onKeyPress}
      ></input>
      <button onClick={onClick}>확인</button>
    </div>
  )
}

export default EventPractice
728x90

'💙 React' 카테고리의 다른 글

[REACT] Carousel로 배너 슬라이드 구현하기  (0) 2023.02.06
[REACT] Swiper 사용하여 터치슬라이드 구현하기  (1) 2023.02.06
[REACT] 반복 ( Iteration )  (0) 2022.10.07
[REACT] HOOK  (0) 2022.10.07
[REACT] SCSS  (0) 2022.10.06