Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-arena-api
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
ygopro-arena-api
Commits
70894af1
Commit
70894af1
authored
Oct 09, 2017
by
ganjingcun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
random return vote
parent
15cd54e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
routes/api.js
routes/api.js
+4
-3
No files found.
routes/api.js
View file @
70894af1
...
@@ -951,9 +951,9 @@ router.get('/vote', function (req, res) {
...
@@ -951,9 +951,9 @@ router.get('/vote', function (req, res) {
},
},
function
(
rows
,
ids
,
callback
)
{
function
(
rows
,
ids
,
callback
)
{
console
.
log
(
ids
)
//
console.log(ids)
var
validRow
=
rows
.
filter
(
function
(
row
)
{
var
validRow
=
rows
.
filter
(
function
(
row
)
{
console
.
log
(
row
,
ids
.
indexOf
(
row
.
id
.
toString
()))
//
console.log(row, ids.indexOf(row.id.toString()))
return
ids
.
indexOf
(
row
.
id
.
toString
())
===
-
1
return
ids
.
indexOf
(
row
.
id
.
toString
())
===
-
1
})
})
callback
(
null
,
validRow
);
callback
(
null
,
validRow
);
...
@@ -965,8 +965,9 @@ router.get('/vote', function (req, res) {
...
@@ -965,8 +965,9 @@ router.get('/vote', function (req, res) {
}
}
if
(
validRow
.
length
>
0
)
{
if
(
validRow
.
length
>
0
)
{
var
index
=
_
.
random
(
0
,
validRow
.
length
)
res
.
json
({
res
.
json
({
data
:
validRow
[
0
]
data
:
validRow
[
index
]
});
});
}
else
{
}
else
{
res
.
json
({
res
.
json
({
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment