Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박찬수
/
enjoy_soccer
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
박찬수
2022-06-09 11:32:09 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6a881a74522caccd44824aacd046e0f18356b7ac
6a881a74
1 parent
43e07352
팀 순위 답변기능 추가
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
reply.js
reply.js
View file @
6a881a7
...
...
@@ -12,6 +12,7 @@ const domain = "2018102191.osschatbot2022.tk"
const
sslport
=
23023
;
var
data
=
require
(
'./getid.js'
);
var
soccerAPI
=
require
(
'./appfunctions.js'
);
const
bodyParser
=
require
(
'body-parser'
);
...
...
@@ -170,9 +171,14 @@ function SelectLeague(inputNum){
}
function
SelectLeagueInfo
(
inputNum
){
let
returnMsg
=
"잘 못 고르
겼
습니다. 다시 골라주세요."
let
returnMsg
=
"잘 못 고르
셨
습니다. 다시 골라주세요."
switch
(
inputNum
){
case
1
:
// 팀 순위
soccerAPI
.
LeagueStanding
(
currentLeagueID
,
function
(
body
){
let
standingJson
=
JSON
.
parse
(
body
);
returnMsg
=
MakeReplyMessage
(
'팀 순위'
,
'순위|팀명|경기|득점|승리|무승부|패배|득점|??'
,
(
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
rank
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
team
.
name
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
played
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
points
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
win
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
draw
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
lose
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
goals
.
for
+
"|"
+
standingJson
.
response
[
0
].
league
.
standings
[
0
][
i
].
all
.
goals
.
against
));
});
break
;
case
2
:
// 득점 순위
break
;
...
...
@@ -186,6 +192,10 @@ function SelectLeagueInfo(inputNum){
return
returnMsg
;
}
function
MakeReplyMessage
(
title
,
keys
,
values
){
return
title
+
'\n'
+
keys
+
'\n'
+
values
;
}
function
SelectTeamInfo
(
inputNum
){
return
'You Selected '
+
inputNum
.
toString
();
}
...
...
Please
register
or
login
to post a comment