第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

Go GORM - BeforeUpdate 字段有舊值

Go GORM - BeforeUpdate 字段有舊值

Go
慕桂英3389331 2023-02-06 14:42:46
我有一個(gè)帶有 GORM 的 Go 應(yīng)用程序,我試圖在每次更新時(shí)散列用戶的密碼字段。為此,我使用了BeforeUpdateGORM 提供的鉤子。我面臨的問(wèn)題是,在上述掛鉤上Password,用戶 ( u.password) 的字段具有已存儲(chǔ)在數(shù)據(jù)庫(kù)中的舊哈希密碼值,而不是newPassword我更新它的值。因此,當(dāng)我對(duì)鉤子上的密碼進(jìn)行哈希處理時(shí),我實(shí)際上只是在對(duì)已經(jīng)進(jìn)行哈希處理的舊密碼進(jìn)行哈希處理。我的BeforeUpdate鉤子:func (u *User) BeforeUpdate(tx *gorm.DB) (err error) {  if (tx.Statement.Changed("Password")) {    bytePassword := []byte(u.Password) // Old password value here!    passwordHash, err := bcrypt.GenerateFromPassword(bytePassword, bcrypt.DefaultCost)    if (err != nil) { return err }    tx.Statement.SetColumn("password", string(passwordHash))  }  return nil}更新是這樣觸發(fā)的:var user models.Usererr := db.First(&user, id).Errorif (err != nil) { log.Fatal(err) }// Not sure how to access this "newPassword" value on the "BeforeUpdate" hookerr = db.Model(&user).Update("password", newPassword).Errorif (err != nil) { log.Fatal(err) }編輯:工作解決方案感謝@s3vt 的回答只需要改變我的BeforeUpdate鉤子:func (u *User) BeforeUpdate(tx *gorm.DB) (err error) {  if (tx.Statement.Changed("Password")) {    u.Password = tx.Statement.Dest.(map[string]interface{})["password"].(string)    bytePassword := []byte(u.Password)    passwordHash, err := bcrypt.GenerateFromPassword(bytePassword, bcrypt.DefaultCost)    if (err != nil) { return err }    tx.Statement.SetColumn("password", string(passwordHash))  }  return nil}
查看完整描述

1 回答

?
月關(guān)寶盒

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超5個(gè)贊

tx.Statement.Dest您可以從映射中獲取新密碼值。這是將SetColumn值更新為的同一張地圖。

或者在實(shí)際更新調(diào)用之前設(shè)置新密碼值。

user.Password = newPassword
err = db.Model(&user).Updates(&user).Error

在這種情況下,舊密碼將無(wú)法使用。


查看完整回答
反對(duì) 回復(fù) 2023-02-06
  • 1 回答
  • 0 關(guān)注
  • 230 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)