Controlled And Uncontrolled Inputs with React

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 ม.ค. 2025

ความคิดเห็น • 2

  • @TheWebSchool
    @TheWebSchool  3 ปีที่แล้ว +1

    Indeed, you have the shorter (but a bit less comprehensible for beginners) version to handle the controlled inputs :
    const handleChange = e => {
    setInpData({
    ...state,
    [e.target.name]: e.target.value
    });
    }

  • @mikiyasmohammed8368
    @mikiyasmohammed8368 2 ปีที่แล้ว

    Nice explanation. Thank you!