Rails: create on has_one association

后端 未结 4 1175
鱼传尺愫
鱼传尺愫 2020-12-22 23:05

Hi (huge Rails newbie here), I have the following models:

class Shop < ActiveRecord::Base
  belongs_to :user
  validates_uniqueness_of :title, :user_id, :         


        
4条回答
  •  再見小時候
    2020-12-22 23:51

    Two more ways if you want save instead of create:

    shop = @user.build_shop
    shop.save
    
    shop = Show.new
    shop.user = @user
    shop.save
    

提交回复
热议问题