gpt4 book ai didi

python - 在没有模板的情况下对 POST 进行 Flask 适当响应?

转载 作者:行者123 更新时间:2023-11-28 21:52:45 26 4
gpt4 key购买 nike

所以我有一种方法可以在数据库中为健身应用程序创建新练习。我正在使用 angular 来处理 ajax。

@app.route('/create', methods=['POST'])
def create():
data = request.get_json(request.data)
ex = Exercise(data['exName'], data['exType'])
db.session.add(ex)
db.session.commit()

提交成功后,最好的回复是什么?我真的不需要成功消息,只需要让客户知道它已成功创建。谢谢!

最佳答案

我认为您可以发回 w3.org rfc2616 描述的 HTTP 204 :

10.2.5 204 No Content

The server has fulfilled the request but does not need to
return an entity-body, and might want to return updated
metainformation. The response MAY include new or updated
metainformation in the form of entity-headers, which if
present SHOULD be associated with the requested variant.

我想你可以在你的函数结束时这样做

return '', 204

关于python - 在没有模板的情况下对 POST 进行 Flask 适当响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27881084/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com