Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2019-1-OpenSourceSW
/
StarCraft2 Build Recommendation
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
신기성
2018-12-09 13:30:16 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9124dd011cd07117c19b58343d8353cd735559c9
9124dd01
1 parent
209174cb
match history에서 map과 decision 추출 완료
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
FindUser.js
process2.txt
FindUser.js
View file @
9124dd0
...
...
@@ -110,8 +110,19 @@ request(match_history_url,(error,response,body)=>{
// System.out.println(matches.type);
// System.out.println(matches.decision);
//}
var
jsonstring
=
JSON
.
stringify
(
body
);
//json형식의 string으로 변환
console
.
log
(
jsonstring
);
//테스트용 : jsontext에 바디가 적절히 들어가는지 검사
var
obj
=
JSON
.
parse
(
body
);
//request 결과를 JSON object로 변환
// console.log(obj);
//console.log(obj.matches [0].map);//테스트용 : 하나에 접근
$
(
obj
.
matches
).
each
(
function
(
index
,
match
){
//body에서 각각의 배열요소 match들과 인덱스 사용
if
(
match
.
type
==
'1v1'
){
//경기타입이 1대1인 경우에만 관심있다.
console
.
log
(
index
+
":::"
,
match
.
decision
,
match
.
map
);
//인덱스와 승패, 맵 표시
};
//if 1v1 종료
});
//each function 종료
//var jsonstring=JSON.stringify(body);//json형식의 string으로 변환
//console.log(jsonstring);//테스트용 : jsontext에 바디가 적절히 들어가는지 검사
});
//request3종료
});
//request2종료
// }catch(error){
...
...
process2.txt
View file @
9124dd0
...
...
@@ -7,3 +7,5 @@
주의사항 : 한명을 특정해야함. 특정번호는 꼭 7자리가 아닐수 있다. 맨 처음 뜬 사람 기준
없애야 할 철자 : y e r / " 5가지
추가구현사항 : 전체페이지검색, 한글검색
중요포인트 : 편법도 아니고 15초안에 제공가능하다는점!
...
...
Please
register
or
login
to post a comment