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-07 23:44:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7ee5e37d67188576b6bb49a77da2cb911a104193
7ee5e37d
1 parent
fc14eb15
검색할 아이디 입력받기 + 검색 url 구성하기
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
FindUser.js
process2.txt
FindUser.js
0 → 100644
View file @
7ee5e37
var
readline
=
require
(
'readline'
);
//입력받기 위한 모듈
var
r
=
readline
.
createInterface
({
input
:
process
.
stdin
,
output
:
process
.
stdout
});
//키보드 입출력 정의
var
url
=
"http://www.rankedftw.com/search/?name="
;
//rtfw에서 기본 검색 url
r
.
question
(
"분석을 원하는 아이디를 입력하세요 : "
,
function
(
answer
){
//question메소드에서 callback함수 생성
console
.
log
(
"입력완료! 분석중..."
);
//callback함수란 이벤트가 왔을 때 실행되는 함수이다. answer에 검색을 원하는 아이디가 담겨있다.
url
=
url
+
answer
;
console
.
log
(
url
);
r
.
close
()
//반드시 close를 해줘야 한다.사용이 다 끝난 후에.
});
process2.txt
0 → 100644
View file @
7ee5e37
1. 검색할 아이디를 입력받는다. :done ->서버,리그 선택으로 심화
2. rtfw에서 검색한다.
3. rtfw에서 찾는다. -> 전체 페이지로 심화
4. 리스트를 클릭한다.
5. a.player에서 profileID를 추출한다. ->플레이어 페이지나 프로필 페이지 등등 활용 가능
6. profileID로 API에서 필요정보 요청
Please
register
or
login
to post a comment