0

如何为权限类创建自定义响应

现在的回应是:

{"detail": "Authentication credentials were not provided."}

我想要的回应:

{
  "status": 403,
  "message": "Authentication credentials were not provided",
  "response": {....}
}
4

1 回答 1

0

根据官方文档here,您需要覆盖.handle_exceptions视图中的方法来自定义响应。

官方文档中显示是如何制作自定义异常处理程序。

于 2020-12-07T05:30:17.140 回答