|
|
@ -114,17 +114,28 @@ def islike(): |
|
|
|
@bp_collection.route("/like", methods=["POST"]) |
|
|
|
def get_like(): |
|
|
|
id = request.form.get('collection_id') |
|
|
|
phonenum = request.form.get('phonenum') |
|
|
|
""" |
|
|
|
增加点赞数 |
|
|
|
更新用户的点赞状态 |
|
|
|
""" |
|
|
|
ret = {'msg': 'succuss'} |
|
|
|
try: |
|
|
|
s = UserLike(phonenum=phonenum, collection_id=id, state=1) |
|
|
|
db_session.add(s) |
|
|
|
db_session.query(Collection).filter(Collection.id == id).update({Collection.like: Collection.like + 1}) |
|
|
|
db_session.commit() |
|
|
|
except BaseException as e: |
|
|
|
print(str(e)) |
|
|
|
ret = {'msg': 'failed!'} |
|
|
|
return json_util.dumps(ret) |
|
|
|
return json_util.dumps(ret) |
|
|
|
|
|
|
|
|
|
|
|
@bp_collection.route("/unlike", methods=["POST"]) |
|
|
|
def get_unlike(): |
|
|
|
id = request.form.get('colllection_id') |
|
|
|
phonenum = request.form.get('phonenum') |
|
|
|
""" |
|
|
|
减少点赞数 |
|
|
|
更新用户的点赞状态 |
|
|
|