次のようにリンクされたユーザーモデルと会社モデルがあります。
class User < ActiveRecord::Base
belongs_to :company
accepts_nested_attributes_for :company
end
class Company < ActiveRecord::Base
has_many :users
end
サインインページで、ユーザーに自分の情報(メール、パスワード)と会社情報(いくつかのフィールド)の両方を設定してもらいたい。したがって、私のフォームは次のようになります。
<%= simple_form_for @user, :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :email, :required => true, :placeholder => "user@domain.com" %>
<%= f.input :password, :required => true %>
<%= f.input :password_confirmation, :required => true %>
<h2>Company info</h2>
<%= simple_fields_for :company, :html => { :class => 'form-horizontal' } do |fa| %>
<%= fa.input :name %>
<%= fa.input :url %>
<%= fa.input :description, :as => :text, :input_html => { :cols => 60, :rows => 3 } %>
<%= fa.input :logo %>
<%= fa.input :industry %>
<%= fa.input :headquarters %>
<% end %>
<div class="form-actions">
<%= f.submit nil, :class => 'btn btn-primary' %>
<%= link_to t('.cancel', :default => t("helpers.links.cancel")),
root_url, :class => 'btn' %>
</div>
<% end %>
私のユーザーモデルにはcompany_id:integer
フィールドがあります。したがって、論理的には、ユーザーにサインインするとき、最初に行うことは、ユーザーの前に会社を作成してから、ユーザー作成モデルに適切なを与えることcompany_id
です。だから私はこれを書いた:
class UsersController < ApplicationController
before_create :create_company
def new
@user = User.new
end
def create
@user = User.new(params[:user])
if @user.save
redirect_to root_url, :notice => "Registration successful."
else
render :action => 'new'
end
end
private
def create_company
@company = Company.new(params[:company])
if @company.save
self.company_id = @company.id
else
render :action => 'new'
end
end
end
問題は次のとおりです。/users/newにアクセスすると、次のエラーが発生します。
undefined method `before_create' for UsersController:Class
何が問題なのですか?私は、before_createが非推奨になっていないことを確認しました。私は、Rails3.2.8を使用しています。これはおそらく私のcreate_company
方法では愚かなことですが、理由がわかりません...
助けてくれてありがとう!