我正在使用Flask-RESTful,并希望通过在我的响应中添加自定义HTTP标头来处理某些错误。是否有标准的Flask或Flask-RESTful方式来做到这一点?
答案 0 :(得分:4)
原来我跳过了那部分文档:
class Todo3(Resource):
def get(self):
# Set the response code to 201 and return custom headers
return {'task': 'Hello world'}, 201, {'Etag': 'some-opaque-string'}