我正在使用joi来验证我的 api 请求。除了错误消息返回带有斜杠“\”字符的字段名称外,一切都很好。
{
"message": "validation error",
"error": {
"status": 400,
"statusText": "Bad Request",
"errors": [
{
"field": "email",
"location": "body",
"messages": [
"\"email\" must be a valid email"
],
"types": [
"string.email"
]
}
]
}
}
有人遇到这个问题吗?