我正在尝试从REST Django框架创建自定义错误响应。
我在 views.py ,
中加入了以下内容from rest_framework.views import exception_handler
def custom_exception_handler(exc):
"""
Custom exception handler for Django Rest Framework that adds
the `status_code` to the response and renames the `detail` key to `error`.
"""
response = exception_handler(exc)
if response is not None:
response.data['status_code'] = response.status_code
response.data['error'] = response.data['detail']
response.data['detail'] = "CUSTOM ERROR"
return response
并将以下内容添加到 settings.py 。
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': (
'rest_framework.permissions.AllowAny',
),
'EXCEPTION_HANDLER': 'project.input.utils.custom_exception_handler'
}
我错过了什么,因为我没有得到预期的回应。即400 API响应中的自定义错误消息。
谢谢,
答案 0 :(得分:11)
正如Bibhas所说,使用自定义异常处理程序,只有在调用异常时才能返回自己定义的错误。如果要在不触发异常的情况下返回自定义响应错误,则需要在视图本身中返回它。例如:
return Response({'detail' : "Invalid arguments", 'args' : ['arg1', 'arg2']},
status = status.HTTP_400_BAD_REQUEST)
答案 1 :(得分:0)
请注意,只会针对由引发的异常生成的响应调用异常处理程序。它不会用于视图直接返回的任何响应,例如序列化程序验证失败时通用视图返回的
HTTP_400_BAD_REQUEST
响应。