我想知道我是否以及如何在Sails中执行类似下面的操作。基本上,我正在尝试处理复杂的验证 - 我有一个客户端模型和ContactPerson模型。客户端模型嵌套在其中的ContactPersons,我想在继续之前验证它们是否正确。
// client.js
module.exports = {
attributes: {
name: {
type: 'string',
required: true
}
},
beforeValidation: function(values, cb) {
values.contactPerson.forEach( function( person ) {
var contactPerson = new sails.model.person( person );
var results = contactPerson.validate();
// If valid, continue
// if not valid, invalidate the client Model (cause validationerror)
});
}
}
答案 0 :(得分:1)
// if not valid
if(err) return cb(err);
// if valid
cb();