gpt4 book ai didi

ruby-on-rails - 使用 Ruby On Rails 进行事务操作

转载 作者:行者123 更新时间:2023-12-04 06:13:58 24 4
gpt4 key购买 nike

我在 Controller 内部有一个复杂的操作,它对数据库执行多个更新查询。

如何在没有任何结构重构的情况下使此操作像事务一样?

最佳答案

MyModel.transaction do
begin
@model.update_stuff
@sub_model.update_stuff
@sub_sub_model.update_stuff
rescue ActiveRecord::StatementInvalid # or whatever
# rollback is automatic, but if you want to do something additional,
# add it here
end
end

这里是 the docs for the transaction method .

关于ruby-on-rails - 使用 Ruby On Rails 进行事务操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/933696/

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