Sequelizejs - allowNull的自定义消息

时间:2014-09-28 01:42:24

标签: validation sequelize.js

如果我有模特用户:

var User = sequelize.define('User', {
  name: {
    type: Sequelize.STRING,
    allowNull: false,
    validate: {
      notEmpty: {
        msg: 'not empty'
      }
    }
  },
  nickname: {
    type: Sequelize.STRING
  }
});

如何在name为null或未提供时指定消息?

此代码:

User.create({}).complete(function (err, user) {
  console.log(err);
  console.log(user);
});

产地:

{ [SequelizeValidationError: Validation error]
  name: 'SequelizeValidationError',
  message: 'Validation error',
  errors: 
   [ { message: 'name cannot be null',
       type: 'notNull Violation',
       path: 'name',
       value: null } ] }

生成消息'name not not null',但似乎不在我的控制之下。

使用User.create({name:''})向我显示我的自定义消息'not empty':

{ [SequelizeValidationError: Validation error]
  name: 'SequelizeValidationError',
  message: 'Validation error',
  errors: 
   [ { message: 'not empty',
       type: 'Validation error',
       path: 'name',
       value: 'not empty',
       __raw: 'not empty' } ] }

有没有办法为allowNull提供消息?

由于

1 个答案:

答案 0 :(得分:5)

不幸的是,目前尚未实现Null验证错误的自定义消息。根据源代码,不推荐notNull验证支持基于模式的验证,而code within the schema validation不允许自定义消息。在https://github.com/sequelize/sequelize/issues/1500有一项功能请求。作为一种解决方法,您可以捕获Sequelize.ValidationError并插入一些包含您的消息的自定义代码。

e.g。

User.create({}).then(function () { /* ... */ }).catch(Sequelize.ValidationError, function (e) {
    var i;
    for (i = 0; i < e.errors.length; i++) {
      if (e.errors[i].type === 'notNull Violation') {
        // Depending on your structure replace with a reference
        // to the msg within your Model definition
        e.errors[i].message = 'not empty';
      }
    }
})