Toggle navigation
Toggle navigation
This project
Loading...
Sign in
방승일
/
find_mbti_bot
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
Minkyung Ko
2022-06-03 17:04:28 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
bd462060dc954ee6f44c81f74a33016184263880
bd462060
2 parents
78e5568e
7d411d3e
Merge branch 'master' of
http://khuhub.khu.ac.kr/2018103692/find_mbti_bot
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/app.js
app/app.js
View file @
bd46206
...
...
@@ -902,7 +902,7 @@ apiRouter.post('/detail', (req, res) => {
var
J
=
0
;
for
(
let
j
=
0
;
j
<
4
;
j
++
){
for
(
let
i
=
0
;
i
<
3
;
i
++
){
for
(
let
i
=
0
;
i
<
5
;
i
++
){
if
(
j
==
0
){
if
(
userDB
[
userId
][
j
][
i
]
==
"E"
){
E
++
;
...
...
@@ -944,7 +944,7 @@ apiRouter.post('/detail', (req, res) => {
outputs
:
[
{
simpleText
:
{
text
:
"E와 I의 비율\nE : "
+
(
E
/
(
E
+
I
)
*
100
)
+
"%\nI : "
+
(
I
/
(
E
+
I
)
*
100
)
+
"\nN와 S의 비율\nN : "
+
(
N
/
(
N
+
S
)
*
100
)
+
"%\nS : "
+
(
S
/
(
N
+
S
)
*
100
)
+
"\nF와 T의 비율\nF : "
+
(
F
/
(
F
+
T
)
*
100
)
+
"%\nT : "
+
(
T
/
(
F
+
T
)
*
100
)
+
"\nJ와 P의 비율\nJ : "
+
(
J
/
(
J
+
P
)
*
100
)
+
"%\nP : "
+
(
P
/
(
J
+
P
)
*
100
)
text
:
"E와 I의 비율\nE : "
+
(
E
/
(
E
+
I
)
*
100
.0
)
+
"%\nI : "
+
(
I
/
(
E
+
I
)
*
100.0
)
+
"%\nN와 S의 비율\nN : "
+
(
N
/
(
N
+
S
)
*
100.0
)
+
"%\nS : "
+
(
S
/
(
N
+
S
)
*
100.0
)
+
"%\nF와 T의 비율\nF : "
+
(
F
/
(
F
+
T
)
*
100.0
)
+
"%\nT : "
+
(
T
/
(
F
+
T
)
*
100.0
)
+
"%\nJ와 P의 비율\nJ : "
+
(
J
/
(
J
+
P
)
*
100.0
)
+
"%\nP : "
+
(
P
/
(
J
+
P
)
*
100.0
)
+
"%"
}
}
]
...
...
Please
register
or
login
to post a comment