こんにちは、user_information モデルの作成ビューを作成しようとしていますが、次のエラーが発生します。
NoMethodError in User_informations#new
undefined method `model_name' for NilClass:Class
ユーザーモデルは次のとおりです。
class User < ActiveRecord::Base
attr_accessible :email, :password, :password_confirmation
has_one :user_information
has_secure_password
before_save { |user| user.email = email.downcase }
before_save :create_remember_token
VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
validates :email, presence: true, format: { with: VALID_EMAIL_REGEX }, uniqueness: { case_sensitive: false }
validates :password, presence: true, length: { minimum: 6 }, confirmation: true, unless: Proc.new { |a| !a.new_record? && a.password.present? }
def send_password_reset
self.password_reset_token = SecureRandom.urlsafe_base64
self.password_reset_at = Time.zone.now
self.password = self.password
self.save!(:validate => false )
UserMailer.password_reset(self).deliver
end
def reset_password_token
self.password_reset_token = nil
self.password_reset_at = nil
save!
end
private
def create_remember_token
if self.new_record?
self.remember_token = SecureRandom.urlsafe_base64
end
end
end
ここで user_information モデル:
class UserInformation < ActiveRecord::Base
belongs_to :user
attr_accessible :address, :address2, :business, :descripcion, :identification_number, :mobile_cell, :name, :phone_number
validates :address, presence: true, length: { :maximum => 250 }
validates :address2, length: { :maximum => 250 }
validates :descripcion, presence: true, length: { :maximum => 300 }
validates :identification_number, presence: true
validates :phone_number, presence: true, length: { :is => 11 }
validates :mobile_cell, :length => { :is => 11 }
validates :user_id, presence: true
end
とビュー:
<%= form_for(@user_information) do |f| %>
<%= render 'shared/error_messages', object: f.object %>
<%= f.text_field :name %>
<%= f.text_field :descripcion %>
<%= f.text_field :address %>
<%= f.button "<i class=\"icon-user icon-white\"></i> Salvar".html_safe, :tabindex => 3, class: "btn btn-warning", :style => "width:220px;margin-bottom:5px;" %>
<% end %>
コントローラー
class UserInformationsController < ApplicationController
def index
end
def create
@user_information = current_user.userinformations.build(params[:user_information])
if @user_information.save
flash[:success] = "Micropost created!"
redirect_to redirect_to
else
end
end
end
誰でも私が理解するのを手伝ってくれますか。
ルート
resources :users do
member do
resource :user_information
end
end
resources :sessions, only: [:new, :create, :destroy]
resources :password_resets
root to: 'users#new'
match '/signup', to: 'users#new'
match '/signin', to: 'sessions#new'
match '/signout', to: 'sessions#destroy', via: :delete