gpt4 book ai didi

javascript - beforeUpdate 似乎没有被调用

转载 作者:数据小太阳 更新时间:2023-10-29 05:14:15 25 4
gpt4 key购买 nike

我有一个简单的用户模型如下:

'use strict';

let hashPassword = (user, options) => {
if (!user.changed('password')) { return; }
return require('bcrypt')
.hash(user.getDataValue('password'), 10)
.then(hash => user.setDataValue('password', hash));
};

module.exports = (sequelize, DataTypes) => {
const User = sequelize.define('User', {
username: {allowNull: false, type: DataTypes.STRING, unique: true},
email: {allowNull: false, type: DataTypes.STRING, unique: true},
password: {allowNull: false, type: DataTypes.STRING, unique: false},
}, {
hooks: {
beforeCreate: hashPassword,
beforeUpdate: hashPassword
}
});
return User;
};

它在用户创建上工作得很好,但是 beforeUpdate 钩子(Hook)似乎没有工作或被调用,密码以纯文本形式保存在数据库中。

它来自哪里,如何修复?

最佳答案

您如何更新用户?获取用户实例并更新它与通过查询模型进行更新之间存在差异。前者是实例更新,后者是批量更新操作(即使您的where 过滤器会返回单个项目)。

这个区别很重要,因为 beforeUpdate 是一个 instance hook所以它只会在实例更新时触发。您可以更改更新用户的方式,也可以实现 beforeBulkUpdate Hook 。

关于javascript - beforeUpdate 似乎没有被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46758407/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com