我正在使用sails-mongo适配器尝试使用mongodb的sailsJs。 将验证添加到模型后,验证失败时会收到以下响应。
Users.js型号:
module.exports = {
schema: true,
attributes: {
name: {
type: "string",
unique: true
},
email: {
type: "email",
unique: true
},
password: {
type: "string",
required: true
}
}
}
使用sails-mongo适配器时验证错误:
{
"error": {
"error": "E_UNKNOWN",
"status": 500,
"summary": "Encountered an unexpected error",
"raw": {
"name": "MongoError",
"code": 11000,
"err": "E11000 duplicate key error index: eReporterDB.users.$name_1 dup key: { : \"codin\" }"
}
}
}
如果我使用开发数据库(sails-disk adapter),我会得到更好的格式化响应。
使用sails-disk adapter时的验证错误:
{
"error": {
"error": "E_VALIDATION",
"status": 400,
"summary": "2 attributes are invalid",
"invalidAttributes": {
"name": [
{
"value": "codin",
"rule": "unique",
"message": "A record with that `name` already exists (`codin`)."
}
]
}
}
}
作为开发人员,我希望从框架中获得标准化的响应,
任何人都可以用优雅的方式帮助我处理这样的验证错误。
我的意思是我不能向外行用户显示错误"E11000 duplicate key error index: eReporterDB.users.$name_1 dup key: { : \"codin\" }"
。
感谢。
答案 0 :(得分:1)
sails.js只是报告数据库给出的错误。情况就是sails-disk
有更好的错误消息。 sails-mongo
适配器最终会给出由数据库直接报告的错误;所以要美化这些,你只需要将原始错误映射到更加用户友好的消息,就像任何其他数据库驱动程序一样。