DRF json 404 而不是 html 页面

DRF json 404 insetad of html page

我想用 DRF 响应替换默认的 django 404(以及未来的其他),尽可能简单,只是 return(标准 DRF 响应):

{
    "detail": "Not found."
}

所以我将此代码放入我的 url.py 文件中。

from rest_framework.exceptions import NotFound
from django.conf.urls import handler404
handler404 = NotFound

当我设置 Debug 标志时(在 set Ture 中我得到 500,当将它设置为 False 404 但在 html 形式时。

我在这里阅读了文档:http://www.django-rest-framework.org/api-guide/exceptions/ 但老实说,我不知道如何将其付诸实践。

这似乎很容易,但不知何故我未能实现这一点(以上代码来自其他 SO 线程)。

提前致谢

您应该为 404 创建自定义视图然后使用它。 例如:

views.py中:

from django.http import HttpResponseNotFound
import json

def error404(request, exception):
    response_data = {}
    response_data['detail'] = 'Not found.'
    return HttpResponseNotFound(json.dumps(response_data), content_type="application/json")

然后在 urls.py:

from django.conf.urls import handler404

from yourapp.views import error404

handler404 = error404