sails-mongo 适配器,标准化错误消息

sails-mongo adapter, normalize error messages

我正在使用 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 适配器的开发中数据库,我会得到格式更好的响应。

使用 sails-disk 适配器时出现验证错误:

{
  "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\" }"

谢谢。

sails.js只是报数据库报错。只是 sails-disk 有更好的错误消息。 sails-mongo 适配器最终会给出数据库直接报告的错误;所以为了美化这些,你只需要将原始错误映射到更用户友好的消息中,就像任何其他数据库驱动程序一样。