Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
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
钟尚武
sun
Commits
ee322a13
Commit
ee322a13
authored
6 years ago
by
zhanglu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加画报id
parent
18126fb0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
topic.py
api/topic.py
+7
-0
No files found.
api/topic.py
View file @
ee322a13
...
@@ -10,6 +10,7 @@ from utils.logger import error_logger
...
@@ -10,6 +10,7 @@ from utils.logger import error_logger
class
TopicListView
(
APIView
):
class
TopicListView
(
APIView
):
def
get
(
self
,
request
):
def
get
(
self
,
request
):
pictorial_id
=
request
.
GET
.
get
(
'pictorial_id'
,
''
)
user_id
=
request
.
GET
.
get
(
'user_id'
,
''
)
user_id
=
request
.
GET
.
get
(
'user_id'
,
''
)
page
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
page
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
10
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
10
))
...
@@ -17,6 +18,8 @@ class TopicListView(APIView):
...
@@ -17,6 +18,8 @@ class TopicListView(APIView):
sorts_by
=
list
(
map
(
lambda
i
:
int
(
i
),
request
.
GET
.
getlist
(
'sort_params[]'
,
[
3
])))
sorts_by
=
list
(
map
(
lambda
i
:
int
(
i
),
request
.
GET
.
getlist
(
'sort_params[]'
,
[
3
])))
if
user_id
:
if
user_id
:
filters
.
update
({
'user_id'
:
user_id
})
filters
.
update
({
'user_id'
:
user_id
})
if
pictorial_id
:
filters
.
update
({
"pictorial_id"
:
int
(
pictorial_id
)})
res
=
self
.
rpc
[
'physical/search/business/topic'
](
res
=
self
.
rpc
[
'physical/search/business/topic'
](
offset
=
(
page
-
1
)
*
limit
,
offset
=
(
page
-
1
)
*
limit
,
...
@@ -46,10 +49,14 @@ class TopicListView(APIView):
...
@@ -46,10 +49,14 @@ class TopicListView(APIView):
class
TopicImageListView
(
APIView
):
class
TopicImageListView
(
APIView
):
def
get
(
self
,
request
):
def
get
(
self
,
request
):
pictorial_id
=
request
.
GET
.
get
(
'pictorial_id'
,
''
)
page
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
page
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
50
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
50
))
filters
=
json
.
loads
(
request
.
GET
.
get
(
'filter'
,
"{}"
))
filters
=
json
.
loads
(
request
.
GET
.
get
(
'filter'
,
"{}"
))
sorts_by
=
list
(
map
(
lambda
i
:
int
(
i
),
request
.
GET
.
getlist
(
'sort_params[]'
,
[
3
])))
sorts_by
=
list
(
map
(
lambda
i
:
int
(
i
),
request
.
GET
.
getlist
(
'sort_params[]'
,
[
3
])))
filters
.
update
({
"has_image"
:
True
})
if
pictorial_id
:
filters
.
update
({
"pictorial_id"
:
int
(
pictorial_id
)})
res
=
self
.
rpc
[
'physical/search/business/topic'
](
res
=
self
.
rpc
[
'physical/search/business/topic'
](
offset
=
(
page
-
1
)
*
limit
,
offset
=
(
page
-
1
)
*
limit
,
...
...
This diff is collapsed.
Click to expand it.
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