Ruby On Rails的事务操作

时间:2009-06-01 05:56:07

标签: ruby-on-rails transactions actioncontroller

我在控制器内部有一个复杂的动作,它对数据库执行几个更新查询。

如何在不进行任何结构重构的情况下将此操作作为事务进行操作?

2 个答案:

答案 0 :(得分:6)

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

答案 1 :(得分:5)

可以使用以下命令在控制器事务中进行所有操作:

around_filter :transactional

def transactional
  ActiveRecord::Base.transaction do
    yield
  end
end