从响应中删除添加的错误信息
Remove added error information from response
使用 flask-restplus 我注意到如果我处理一些错误,例如:
api.abort(code=404, message='Item not found')
响应呈现:
{
"message": "Item not found. You have requested this URI [/item/1]
but did you mean /item/<item_id> ?"
}
我真的不想要那些额外的信息,但找不到删除它的方法。
有吗?
所以,有一个配置标志。 Reported here
ERROR_404_HELP=False
成功了吗
使用 flask-restplus 我注意到如果我处理一些错误,例如:
api.abort(code=404, message='Item not found')
响应呈现:
{
"message": "Item not found. You have requested this URI [/item/1]
but did you mean /item/<item_id> ?"
}
我真的不想要那些额外的信息,但找不到删除它的方法。
有吗?
所以,有一个配置标志。 Reported here
ERROR_404_HELP=False
成功了吗