javascript json key value 추출

    javascript json key, value 추출

    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..