自定义(用户友好)ValidatorError消息

时间:2012-01-24 12:09:58

标签: node.js mongodb express error-handling mongoose

我对mongoose真的很新,所以我想知道是否有某种方法来设置custom error message而不是默认的Validator "required" failed for path password

我想设置Password is required.这样的用户友好的东西。

我编写了一些自定义验证程序并使用此用户友好的错误消息设置type属性,但我不确定type是错误消息的正确占位符。此外,无法在min, max, required, enum...

等预定义验证器上设置自定义消息

一种解决方案是检查每次抛出错误的type属性并手动分配错误消息,但认为是验证者的工作:

save model
    if error
        check error type (eg. "required")
        assign fancy error message (eg. "Password is required.")

这显然不是理想的解决方案。

我查看了express-formnode-validator,但仍想使用猫鼬验证功能。

2 个答案:

答案 0 :(得分:16)

我通常使用辅助函数来处理这类事情。只是嘲笑这个比我使用的更一般。这个人将采用所有“默认”验证器(必需,最小,最大等)并使他们的消息更漂亮(根据下面的messages对象),并提取您传入的消息您的自定义验证验证器。

function errorHelper(err, cb) {
    //If it isn't a mongoose-validation error, just throw it.
    if (err.name !== 'ValidationError') return cb(err);
    var messages = {
        'required': "%s is required.",
        'min': "%s below minimum.",
        'max': "%s above maximum.",
        'enum': "%s not an allowed value."
    };

    //A validationerror can contain more than one error.
    var errors = [];

    //Loop over the errors object of the Validation Error
    Object.keys(err.errors).forEach(function (field) {
        var eObj = err.errors[field];

        //If we don't have a message for `type`, just push the error through
        if (!messages.hasOwnProperty(eObj.type)) errors.push(eObj.type);

        //Otherwise, use util.format to format the message, and passing the path
        else errors.push(require('util').format(messages[eObj.type], eObj.path));
    });

    return cb(errors);
}

它可以像这样使用(快速路由器示例):

function (req, res, next) {
    //generate `user` here
    user.save(function (err) {
        //If we have an error, call the helper, return, and pass it `next`
        //to pass the "user-friendly" errors to
        if (err) return errorHelper(err, next);
    }
}

在:

{ message: 'Validation failed',
  name: 'ValidationError',
  errors: 
   { username: 
      { message: 'Validator "required" failed for path username',
        name: 'ValidatorError',
        path: 'username',
        type: 'required' },
     state: 
      { message: 'Validator "enum" failed for path state',
        name: 'ValidatorError',
        path: 'state',
        type: 'enum' },
     email: 
      { message: 'Validator "custom validator here" failed for path email',
        name: 'ValidatorError',
        path: 'email',
        type: 'custom validator here' },
     age: 
      { message: 'Validator "min" failed for path age',
        name: 'ValidatorError',
        path: 'age',
        type: 'min' } } }

后:

[ 'username is required.',
  'state not an allowed value.',
  'custom validator here',
  'age below minimum.' ]

编辑:Snap,刚才意识到这是一个CoffeeScript问题。不是CoffeeScript的人,我真的不想在CS中重写它。您可以随时将其作为js文件放入您的CS吗?

答案 1 :(得分:0)

如果您需要获取第一条错误消息,请参阅以下示例:

LogicClass logicClass()

此致,Nicholls