我在我的项目中使用 Flask 框架和纯 json api。它只呈现没有 html 或静态文件的 json 响应。
我正在尝试使用自定义 http 代码实现abort()函数,在我的情况下为 204(无内容),默认情况下未定义。我目前的代码如下:
# Error define
class NoContent(HTTPException):
code = 204
description = ('No Content')
abort.mapping[204] = NoContent
def make_json_error(ex):
response = jsonify(error=str(ex))
response.status_code = (ex.code
if isinstance(ex, HTTPException)
else 500)
return response
custom_exceptions = {}
custom_exceptions[NoContent.code] = NoContent
for code in custom_exceptions.iterkeys():
app.error_handler_spec[None][code] = make_json_error
# Route
@app.route("/results/<name>")
def results(name=None):
return jsonify(data=results) if results else abort(204)
它运作良好,我得到如下回应:
127.0.0.1 - - [02/Dec/2014 10:51:09] "GET /results/test HTTP/1.1" 204 -
但没有任何内容。它什么也不渲染,甚至浏览器中的空白页也不渲染。
我可以使用错误处理程序
@app.errorhandler(204)
def error204(e):
response = jsonify(data=[])
return response
但它返回 200 个 http 代码。这里需要204。当我添加 error204() 行时,例如:
response.status_code = 204
它再次渲染什么。
我被卡住了,我不知道这种方法哪里有错误。请帮忙。
如果我的方法从设计角度来看是错误的,请提出其他建议。
提前致谢。