溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

golang?gorm的Callbacks事務(wù)回滾對(duì)象怎么創(chuàng)建

發(fā)布時(shí)間:2022-04-16 09:03:18 來(lái)源:億速云 閱讀:199 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹了golang gorm的Callbacks事務(wù)回滾對(duì)象怎么創(chuàng)建的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇golang gorm的Callbacks事務(wù)回滾對(duì)象怎么創(chuàng)建文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

1. Callbacks

您可以將回調(diào)方法定義為模型結(jié)構(gòu)的指針,在創(chuàng)建,更新,查詢(xún),刪除時(shí)將被調(diào)用,如果任何回調(diào)返回錯(cuò)誤,gorm將停止未來(lái)操作并回滾所有更改。

1.1. 創(chuàng)建對(duì)象

創(chuàng)建過(guò)程中可用的回調(diào)

// begin transaction 開(kāi)始事物
BeforeSave
BeforeCreate
// save before associations 保存前關(guān)聯(lián)
// update timestamp `CreatedAt`, `UpdatedAt` 更新`CreatedAt`, `UpdatedAt`時(shí)間戳
// save self 保存自己
// reload fields that have default value and its value is blank 重新加載具有默認(rèn)值且其值為空的字段
// save after associations 保存后關(guān)聯(lián)
AfterCreate
AfterSave
// commit or rollback transaction 提交或回滾事務(wù)

1.2. 更新對(duì)象

更新過(guò)程中可用的回調(diào)

// begin transaction 開(kāi)始事物
BeforeSave
BeforeUpdate
// save before associations 保存前關(guān)聯(lián)
// update timestamp `UpdatedAt` 更新`UpdatedAt`時(shí)間戳
// save self 保存自己
// save after associations 保存后關(guān)聯(lián)
AfterUpdate
AfterSave
// commit or rollback transaction 提交或回滾事務(wù)

1.3. 刪除對(duì)象

刪除過(guò)程中可用的回調(diào)

// begin transaction 開(kāi)始事物
BeforeDelete
// delete self 刪除自己
AfterDelete
// commit or rollback transaction 提交或回滾事務(wù)

1.4. 查詢(xún)對(duì)象

查詢(xún)過(guò)程中可用的回調(diào)

// load data from database 從數(shù)據(jù)庫(kù)加載數(shù)據(jù)
// Preloading (edger loading) 預(yù)加載(加載)
AfterFind

1.5. 回調(diào)示例

func (u *User) BeforeUpdate() (err error) {
    if u.readonly() {
        err = errors.New("read only user")
    }
    return
}

// 如果用戶(hù)ID大于1000,則回滾插入
func (u *User) AfterCreate() (err error) {
    if (u.Id > 1000) {
        err = errors.New("user id is already greater than 1000")
    }
    return
}

gorm中的保存/刪除操作正在事務(wù)中運(yùn)行,因此在該事務(wù)中所做的更改不可見(jiàn),除非提交。 如果要在回調(diào)中使用這些更改,則需要在同一事務(wù)中運(yùn)行SQL。 所以你需要傳遞當(dāng)前事務(wù)到回調(diào),像這樣:

func (u *User) AfterCreate(tx *gorm.DB) (err error) {
    tx.Model(u).Update("role", "admin")
    return
}
func (u *User) AfterCreate(scope *gorm.Scope) (err error) {
  scope.DB().Model(u).Update("role", "admin")
    return
}

關(guān)于“golang gorm的Callbacks事務(wù)回滾對(duì)象怎么創(chuàng)建”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“golang gorm的Callbacks事務(wù)回滾對(duì)象怎么創(chuàng)建”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI