javascript - How to provide custom model validation message in Sails.js? - Stack Overflow

admin2025-04-03  0

How to provide custom model validation message in Sails.js?

The validation messages returned by Sails.js is not user friendly so I wanted to provide a custom validation message for rules like required, minLength etc... but don't really know how. It's not in the docs and I also checked the docs of Anchor.js w/c is the validator used by Sails but its also not there.

UPDATE:

Haven't got a response last week so I implemented my own solution, wanted to share it since it might be useful for others - How I use custom validation messages in Sails.js

Another alternative and better way is to use the solution of @Rifat found in the ments below :)

Another very good alternative (credits to: sfb_ ) -

How to provide custom model validation message in Sails.js?

The validation messages returned by Sails.js is not user friendly so I wanted to provide a custom validation message for rules like required, minLength etc... but don't really know how. It's not in the docs and I also checked the docs of Anchor.js w/c is the validator used by Sails but its also not there.

UPDATE:

Haven't got a response last week so I implemented my own solution, wanted to share it since it might be useful for others - How I use custom validation messages in Sails.js

Another alternative and better way is to use the solution of @Rifat found in the ments below :)

Another very good alternative (credits to: sfb_ ) - https://gist.github./basco-johnkevin/8436644

Share edited Jan 15, 2014 at 14:00 John Kenn asked Dec 25, 2013 at 0:31 John KennJohn Kenn 1,6652 gold badges20 silver badges32 bronze badges 2
  • 2 github./balderdashy/sails/issues/1173#issuement-31327958 – Moinul Hossain Commented Dec 29, 2013 at 23:37
  • Can you mark your question as answered so the rest of the world can see it? – user1366860 Commented Jan 26, 2014 at 15:30
Add a ment  | 

3 Answers 3

Reset to default 9

Since Sails.js doesn't yet support using custom model validation messages, we can use these solutions:

1) @johnkevinmbasco's solution

2) @sfb_'s solution

3) @rifats solution

I came up with modifying the badRequest response to overwrite the errors globally:

/config/validationMessages.js

module.exports.validationMessages = {
  password: 'password and passwordConfirm do not match'
};

api/responses/badRequest.js

...
// Convert validation messages
if(data && data.code !== 'E_VALIDATION') {
  _.forEach(data.invalidAttributes, function(errs, fld) {
    data.invalidAttributes[fld] = errs.map(function(err) {
      if(sails.config.validationMessages[err.rule]) {
        err.message = sails.config.validationMessages[err.rule];
      }
      return err;
    });
  });
}
...

I am using sails-hook-validation

And made some improvements in responses/badRequest.js

.....
// If the user-agent wants JSON, always respond with JSON
if (req.wantsJSON) {
    if (data.code == 'E_VALIDATION' && data.Errors) {
        return res.jsonx(data.Errors);
    }
    return res.jsonx(data);
}
.....
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743689195a215511.html

最新回复(0)