Showing
2 changed files
with
15 additions
and
2 deletions
... | @@ -110,8 +110,19 @@ request(match_history_url,(error,response,body)=>{ | ... | @@ -110,8 +110,19 @@ request(match_history_url,(error,response,body)=>{ |
110 | // System.out.println(matches.type); | 110 | // System.out.println(matches.type); |
111 | // System.out.println(matches.decision); | 111 | // System.out.println(matches.decision); |
112 | //} | 112 | //} |
113 | -var jsonstring=JSON.stringify(body);//json형식의 string으로 변환 | 113 | + |
114 | -console.log(jsonstring);//테스트용 : jsontext에 바디가 적절히 들어가는지 검사 | 114 | +var obj=JSON.parse(body);//request 결과를 JSON object로 변환 |
115 | +// console.log(obj); | ||
116 | +//console.log(obj.matches [0].map);//테스트용 : 하나에 접근 | ||
117 | +$(obj.matches).each(function(index,match){//body에서 각각의 배열요소 match들과 인덱스 사용 | ||
118 | + if(match.type=='1v1'){//경기타입이 1대1인 경우에만 관심있다. | ||
119 | + console.log(index+":::",match.decision,match.map);//인덱스와 승패, 맵 표시 | ||
120 | +};//if 1v1 종료 | ||
121 | +});//each function 종료 | ||
122 | +//var jsonstring=JSON.stringify(body);//json형식의 string으로 변환 | ||
123 | +//console.log(jsonstring);//테스트용 : jsontext에 바디가 적절히 들어가는지 검사 | ||
124 | + | ||
125 | + | ||
115 | });//request3종료 | 126 | });//request3종료 |
116 | });//request2종료 | 127 | });//request2종료 |
117 | // }catch(error){ | 128 | // }catch(error){ | ... | ... |
-
Please register or login to post a comment