Использование метода .build для создания через 1to1 ассоциацию - PullRequest
0 голосов
/ 14 сентября 2011

У меня отношения один-к-одному с простой моделью пользователя и моделью профиля:

модели / пользователь

class User < ActiveRecord::Base
  authenticates_with_sorcery!

  attr_accessible :email, :password, :password_confirmation

  has_one :profile, :dependent => :destroy

  validates_presence_of :password, :on => :create
  validates :password, :confirmation => true,
                       :length       => { :within => 6..100 }

  email_regex = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, :presence        => true,
                    :format          => { :with => email_regex },
                    :uniqueness      => {:case_sensitive => false},
                    :length          => { :within => 3..50 }
end

модели / профиль

            # == Schema Information
    #
    # Table name: profiles
    #
    #  id         :integer         not null, primary key
    #  weight     :decimal(, )
    #  created_at :datetime
    #  updated_at :datetime
    #

    class Profile < ActiveRecord::Base
      attr_accessible :weight

      belongs_to :user

    end

Я делаю это таким образом, потому что я хотел бы, чтобы пользователи могли отслеживать вес с течением времени, а также сохранять другие более статичные данные, такие как рост, в профилях.

Однако мои новые методы создания и создания, похоже, не позволяютработать правильно.Я при отправке нового действия получаю эту ошибку:

undefined method `build' for nil:NilClass

profile_controller

class ProfilesController < ApplicationController

  def new
    @profile = Profile.new if current_user
  end

  def create
    @profile = current_user.profile.build(params[:profile])
    if @profile.save
      flash[:success] = "Profile Saved"
      redirect_to root_path
    else
      render 'pages/home'
    end
  end

  def destory
  end

end

и просмотр профиля для нового

<%= form_for @profile do |f| %>
    <div class="field">
        <%= f.text_field :weight %>
    </div>
    <div class="actions">
        <%= f.submit "Submit" %>
    </div>
<% end %>

Заранее спасибо за любыепомощь, которую вы могли бы оказать.Нуб здесь!

1 Ответ

2 голосов
/ 14 сентября 2011

Синтаксис сборки для has_one ассоциации отличается от has_many ассоциации.Измените свой код следующим образом:

@profile = current_user.build_profile(params[:profile])

Ссылка: SO Ответ

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...