LoginSignup
1
1

More than 3 years have passed since last update.

アソシエーションしてbuildするときの1対多と1対1の記述の仕方の違いについて

Posted at

buildの使い方

アソシエーションによって記述の仕方に違いがあるが、まとっているサイトがなかったので書きました。

1対多


# User.rb
class User < ApplicationRecord
  has_many :posts
end

# Post.rb
class Post < ApplicationRecord
  belongs_to :user
end

# Posts_controller.rb
def new
  @post = @user.posts.build
end

1対1


# User.rb
class User < ApplicationRecord
  has_one :account
end

# Account.rb
class Account 
  belongs_to :user
end

# Accounts_controller.rb
def new
  @account = @user.build_account
end

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1