作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一种方法可以在数据库中为健身应用程序创建新练习。我正在使用 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/
这段代码在 Java 中的等价物是什么?我放了一部分,我对 I/O 部分感兴趣: int fd = open(FILE_NAME, O_WRONLY); int ret = 0; if (fd =
我正在尝试将维度为 d1,d2,d3 的张量 M[a1,a2,a3] reshape 为维度为 d2, d1*d3 的矩阵 M[a2,a1*a3]。我试过 M.reshape(d2,d1*d3) 但是
我是一名优秀的程序员,十分优秀!