在数据库中插入新记录之前,我需要执行一些检查,然后确定记录是否可以插入。 我想使用beforeCreate钩子做这样的事情:
Data.beforeCreate(function(object, options) {
Data.scope('complexQuery').findAll().then(function (result) {
if (result.length >= 1) {
// do not insert the record
}
else {
// go ahead and insert
}
});
});
关于如何停止创建记录的任何想法?
这是正确的方法吗?
答案 0 :(得分:0)
您可以抛出错误,也可以拒绝承诺:
sequelize.define('model', attributes, {
validate: {
complexQuery: function () {
// Do the validation here instead
}
}
});
由于您实际上正在进行验证,因此它可能更适合作为验证函数:)
{{1}}
验证同时用于创建和更新