프로그래밍 언어/Javascript

javascript json key, value 추출

작은소행성 2021. 4. 9. 18:06

 

 

ajax 로 data를 받은 후 

 

 

$.ajax({
                type : "post",
                url : "/getparam",
                data : addrs,
                datatype:'json',
                success : function(data){
                    console.log("success > ",data);
                    getparam(data);
                },
                error:function (xhr, status, error){
                    console.log(error,xhr,status);
                }
            });//ajax

 

 

 

json 데이터의 key, value 값을 추출하고자 한다.

 

function getparam(data){

		for (key in data){
                console.log("key > ",key );
                console.log("value > ",data[key] );
            }

}

 

 

 

 

 

key값만 추출하는 것도 있다

 

 

let key1 = Object.keys(data);
let key2 = Object.getOwnPropertyNames(data);
//console.log("key1 > ",key1 ,", key2 > ",key2 );

 

반응형