Notice
Recent Posts
Recent Comments
Archives
반응형
«   2024/11   »
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
Today
Total
11-15 01:24
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[React] useState 객체 값 변경하기 본문

Programming/React

[React] useState 객체 값 변경하기

aldrn29 2022. 5. 17. 23:41

useState의 값을 객체로 가지고 있을 때, 객체 내용을 업데이트 하는 방법이다. 

 

728x90

 


 

useState 객체 변경하기

  1. setContition의 current 값을 가져온다.
  2. 원하는 객체 key, value를 저장하고, 업데이트 된 객체를 리턴한다. 

 

전체 코드

import React, { useState } from "react";

function Test() {
    const [condition, setCondition] = useState({
        category: "",
        val1: "",
        type: "",
    });

    const changeCondition = (key, value) => {
        setCondition((current) => {
            let newCondition = { ...current };
            newCondition[key] = value;
            return newCondition;
        });
    };
    
    return (
        <>
        </>
    )
}

 

728x90
728x90
Comments