代码之家  ›  专栏  ›  技术社区  ›  pzin

在保存模型之前,访问所有关联,包括嵌套属性

  •  1
  • pzin  · 技术社区  · 6 年前

    Order ,安 Item 和一个 Product 模型。

    class Order < ApplicationRecord
      has_many :items, dependent: :destroy, inverse_of: :order
    end
    
    class Item < ApplicationRecord
      belongs_to :order
      belongs_to :product
    end
    
    class Product < ApplicationRecord
      has_many :items
    end
    

    我要计算一下每星期有多少箱 有( item.units/item.product.units_per_box before_save 回调,但我无法访问嵌套属性,只能访问持久化项。

    我把这个放在箱子里了 订单 型号:

    before_save :calculate_boxes, on: [:create, :update]
    
    def calculate_boxes
      self.boxes = 0
      self.items.each do |item|
        self.boxes += item.units / item.product.units_per_box
      end
    end
    

    但是,我是这么说的,它只是计算持久化项。

    Cocoon gem

    1 回复  |  直到 6 年前
        1
  •  2
  •   Akshay Goyal    6 年前

    尝试使用 self.items.collect . 这应该管用。我也建议你使用 unless item.marked_for_destruction? 在回路内部。