我试图验证模型及其内容。但是,由于环回自定义验证功能的结构,编写比简单字符串验证更高级的逻辑非常困难。
Job.validate('job_definition, function(err){
//err();
//this will succeed in throwing error
Job.app.models.anotherModel.findOne({where:{name:this.job_definition.toolName}}, function(error, tool){
if(tool.aProperty === this.job_definition.aProperty){
//err();
//this will not succeed, validation script will exit before err() is thrown
}
});
}, {message: 'this is malformed'});
如何让这个验证功能等待'在退出之前?
答案 0 :(得分:3)
以下是使用validateAsync(https://apidocs.strongloop.com/loopback-datasource-juggler/#validatable-validateasync)的示例。请注意,如果要验证失败,则必须运行err()。
module.exports = function(Person) {
function myCustom(err, done) {
console.log('async validate');
var name = this.name;
setTimeout(function() {
if(name == 'Ray') {
err();
done();
} else {
done();
}
}, 1000);
}
Person.validateAsync('name', myCustom, {message:'Dont like'});
};
这有意义吗?仅供参考,我可以改写一下,如果有点好。