DRFによって指定されるデフォルトの検証エラーメッセージは、キーとメッセージのリストです。この形式をテキスト形式にカスタマイズする最も良い方法は何でしょうか。例えば。Django Rest Frameworkを使用したカスタム検証エラーメッセージ
これがデフォルトの形式です。
{
"message": {
"phone": [
"customer with this phone already exists."
],
"email": [
"customer with this email already exists."
],
"tenant_id": [
"customer with this tenant id already exists."
]
},
"success": false,
"error": 1
}
これは私が欲しいものです。
{
"message": "customer with this phone already exists, customer with this
email already exists, customer with this tenant id already exists"
"success": false,
"error": 1
}