Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpha
physical
Commits
b1d32416
Commit
b1d32416
authored
Mar 18, 2019
by
zhanglu
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/sun_topic2es' into 'test'
添加排序 See merge request
!188
parents
b2437cea
a8c37320
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
18 deletions
+35
-18
topic.py
search/utils/topic.py
+35
-18
No files found.
search/utils/topic.py
View file @
b1d32416
...
...
@@ -631,25 +631,42 @@ class TopicUtils(object):
"""处理排序部分。"""
sort_rule
=
[]
if
sorts_by
==
TOPIC_SEARCH_SORT
.
VOTE_NUM
:
sort_rule
.
append
({
"vote_num"
:{
"order"
:
"desc"
},
"update_time"
:{
"order"
:
"desc"
},
})
elif
sorts_by
==
TOPIC_SEARCH_SORT
.
VOTE_NUM
:
pass
if
isinstance
(
sorts_by
,
int
):
if
sorts_by
==
TOPIC_SEARCH_SORT
.
VOTE_NUM
:
sort_rule
.
append
({
"vote_num"
:{
"order"
:
"desc"
},
"update_time"
:{
"order"
:
"desc"
},
})
elif
sorts_by
==
'2'
:
sort_rule
.
append
({
"id"
:{
"order"
:
"desc"
},
})
elif
isinstance
(
sorts_by
,
list
):
if
sorts_by
==
TOPIC_SEARCH_SORT
.
ID_ASC
:
sort_rule
.
append
({
"id"
:{
"order"
:
"asc"
},
})
elif
sorts_by
==
TOPIC_SEARCH_SORT
.
ID_DESC
:
sort_rule
.
append
({
"id"
:{
"order"
:
"desc"
},
})
elif
sorts_by
==
TOPIC_SEARCH_SORT
.
SCORE_AEC
:
sort_rule
.
append
({
"sort_score"
:{
"order"
:
"asc"
},
})
elif
sorts_by
==
TOPIC_SEARCH_SORT
.
SCORE_DESC
:
sort_rule
.
append
({
"sort_score"
:{
"order"
:
"desc"
},
})
return
sort_rule
...
...
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