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 );
반응형
'프로그래밍 언어 > Javascript' 카테고리의 다른 글
jquery string 으로 url 넘길 때 특수문자 사라지는 현상 해결(encodeURICpmponent) (0) | 2021.04.12 |
---|---|
[javascript] table row text 가져오기 (table td text ,tr text 데이터) (0) | 2021.04.12 |
ajax xml 전체내용 출력 (0) | 2021.04.07 |
dataTable 한국어 함수 (0) | 2021.02.15 |
window.onload 와 $(document).ready 의 차이 (0) | 2021.02.15 |