Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2019-2-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-08 22:41:56 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
209174cbebcd1a14ac968a6422563d929613e860
209174cb
1 parent
6f587c4c
match history string 추출 완료
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
FindUser.js
FindUser.js
View file @
209174c
...
...
@@ -13,6 +13,19 @@ var fs=require('fs');//파일시스템 사용
//var param={};
//var urltype=require('url');
//
//class MatchHistory{
// @SerializedName("matches")
// public List<Matches> matches;
//class Matches{
// @SerializedName("map")
// public String map;
// @SerializedName("type")
// public String type;
// @SerializedName("decision")
// public String decision;
//}
//}
r
.
question
(
"분석을 원하는 아이디를 입력하세요 : "
,
function
(
answer
){
//question메소드에서 callback함수 생성
console
.
log
(
"입력완료! 분석중..."
);
//callback함수란 이벤트가 왔을 때 실행되는 함수이다. answer에 검색을 원하는 아이디가 담겨있다.
rtfw1
=
rtfw1
+
answer
;
//검색 url 구성
...
...
@@ -86,6 +99,19 @@ request(match_history_url,(error,response,body)=>{
if
(
error
){
throw
error
};
console
.
log
(
'request3 processing'
);
//console.log(body); //테스트용: response body 출력
//JsonParser jsonParser=new JsonParser();
//JsonObject jsonObject=(JsonObject) jsonParser.parse(json);
//JsonObject matches=(JsonObject) jsonObject.get("matches");
//System.out.print(matches.get("map"));
//MatchHistory matchhistory=new Gson().fromJson(json,MatchHistory.class);
//for(MatchHistory.Matches matches : matchhistory.matches){
// System.out.println(matches.map);
// System.out.println(matches.type);
// System.out.println(matches.decision);
//}
var
jsonstring
=
JSON
.
stringify
(
body
);
//json형식의 string으로 변환
console
.
log
(
jsonstring
);
//테스트용 : jsontext에 바디가 적절히 들어가는지 검사
});
//request3종료
});
//request2종료
// }catch(error){
...
...
Please
register
or
login
to post a comment