簡體   English   中英

Rails在創建之前或之后如何在模型中創建關聯?

[英]Rails how create association in the model before or after create?

我正在使用回調創建關聯,但是創建后沒有關聯

有人暗示在模型中而不是在控制器中如何關聯?

class Open < ActiveRecord::Base
after_create :images_build

  def images_build
    images.build

    true
  end
end

如果您嘗試創建關聯並將其保存到數據庫,請執行以下操作:

before_create ->{ images.build }

這將創建與您的新“打開”記錄關聯的單個圖像記錄。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM