Commit 96ecec96 authored by 王浩's avatar 王浩

fix unuse print

parent 8edb6733
...@@ -10,7 +10,6 @@ class CreateTagForBatch(BaseView): ...@@ -10,7 +10,6 @@ class CreateTagForBatch(BaseView):
""" """
def post(self, request): def post(self, request):
tag_list = json.loads(request.POST.get("tags", '[]')) tag_list = json.loads(request.POST.get("tags", '[]'))
print(request.POST)
tags = [] tags = []
# 敏感词检测,获取可用的帖子 # 敏感词检测,获取可用的帖子
......
...@@ -94,7 +94,6 @@ class CreateTopicForBatchByOne(BaseView): ...@@ -94,7 +94,6 @@ class CreateTopicForBatchByOne(BaseView):
topic_list = json.loads(request.POST.get("topic_list", '[]')) topic_list = json.loads(request.POST.get("topic_list", '[]'))
if not user_ids: if not user_ids:
print(user_ids, topic_list)
return self.parameter_invalid_response() return self.parameter_invalid_response()
if not topic_list: if not topic_list:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment