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
김성욱
2022-06-03 17:15:17 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
14106ee8774c0c1b88e4d9157971fe8e431d7e7e
14106ee8
1 parent
7d411d3e
Update app.js Ver.4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
app/app.js
app/app.js
View file @
14106ee
...
...
@@ -928,7 +928,7 @@ apiRouter.post('/detail', (req, res) => {
}
}
else
if
(
j
==
3
){
if
(
userDB
[
userId
][
j
][
i
]
==
"
N
"
){
if
(
userDB
[
userId
][
j
][
i
]
==
"
P
"
){
P
++
;
}
else
{
...
...
@@ -944,7 +944,7 @@ apiRouter.post('/detail', (req, res) => {
outputs
:
[
{
simpleText
:
{
text
:
"E와 I의 비율\nE : "
+
(
E
/
(
E
+
I
)
*
100.0
)
+
"%\nI : "
+
(
I
/
(
E
+
I
)
*
100.0
)
+
"%\n
N와 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
)
+
"%"
text
:
"E와 I의 비율\nE : "
+
(
E
/
(
E
+
I
)
*
100.0
)
+
"%\nI : "
+
(
I
/
(
E
+
I
)
*
100.0
)
+
"%\n
\nN와 S의 비율\nN : "
+
(
N
/
(
N
+
S
)
*
100.0
)
+
"%\nS : "
+
(
S
/
(
N
+
S
)
*
100.0
)
+
"%\n\nF와 T의 비율\nF : "
+
(
F
/
(
F
+
T
)
*
100.0
)
+
"%\nT : "
+
(
T
/
(
F
+
T
)
*
100.0
)
+
"%\n
\nJ와 P의 비율\nJ : "
+
(
J
/
(
J
+
P
)
*
100.0
)
+
"%\nP : "
+
(
P
/
(
J
+
P
)
*
100.0
)
+
"%"
}
}
]
...
...
Please
register
or
login
to post a comment