Created
September 28, 2011 22:12
-
-
Save dakatsuka/1249405 to your computer and use it in GitHub Desktop.
has_one関連時のaccepts_nested_attributes_for / fields_for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| = form_for @user do |f| | |
| = f.fields_for :profile, @user.profile || Profile.new do |p| | |
| .field | |
| = p.label :nickname | |
| = p.text_field :nickname |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Profile < ActiveRecord::Base | |
| belongs_to :user | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class User < ActiveRecord::Base | |
| has_one :profile | |
| accepts_nested_attributes_for :profile | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment