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
b74ae112
Commit
b74ae112
authored
5 years ago
by
许俊鹏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
取消参数判断
parent
f0f72d57
master
dev
like-pre/r01
quick-reply
refactor
test
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
tag.py
api/tag.py
+2
-7
No files found.
api/tag.py
View file @
b74ae112
...
...
@@ -212,9 +212,7 @@ class TagSearchRecommendKeyword(APIView):
def
post
(
self
,
request
):
# 如果有id 走update 。 否则走创建
id
=
request
.
POST
.
get
(
'id'
,
None
)
update
=
request
.
POST
.
get
(
'update'
)
if
not
update
:
return
{
'message'
:
'参数不完整'
}
update
=
request
.
POST
.
get
(
'update'
,
''
)
try
:
data
=
self
.
rpc
[
'venus/sun/tag/recommend_keyword/edit'
](
data
=
update
,
id
=
id
)
.
unwrap
()
except
Exception
as
e
:
...
...
@@ -233,11 +231,8 @@ class SearchDefaultKeyword(APIView):
return
data
def
post
(
self
,
request
):
id
=
request
.
POST
.
get
(
'id'
,
None
)
update
=
request
.
POST
.
get
(
'update'
)
if
not
update
:
return
{
'message'
:
'参数不完整'
}
update
=
request
.
POST
.
get
(
'update'
,
''
)
try
:
data
=
self
.
rpc
[
'venus/sun/tag/search_default_keyword/edit'
](
data
=
update
,
id
=
id
)
.
unwrap
()
except
Exception
as
e
:
...
...
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