ruby-on-rails – 在一个事务下创建和更新多个模型

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在一个事务下创建和更新多个模型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道它是否可以在rails中在一次交易中进行多次更新和创建.

我想创造一个号码.任何阵列的产品.但是对于每个产品,我还需要为它创建公司和类别.

所以这个想法是这样的

-- Start a transaction
//create a company
//create a category
while product_list
{
   //create a product with company and category created above
}
-- end a transcation

因此,如果任何创建失败,我希望先前的更新/创建回滚.

解决方法

begin
  ActiveRecord::Base.transaction do
    # create a company
    # create a category
    while product_list
    {
      # create a product with company and category created above
    }
  end
rescue => e
  # something went wrong,transaction rolled back
end
原文链接:https://www.f2er.com/ruby/267800.html

猜你在找的Ruby相关文章