0

我有两个模型

class User < ActiveRecord::Base
  has_one :user_information, :dependent => :destroy
  attr_accessible :email, :name
end

class UserInformation < ActiveRecord::Base
  belongs_to :user
  attr_accessible :address, :business, :phone, :user_id
end

创建用户后,我使用控制器的 new 和 create 操作创建了用户信息:

  def new
         @user = User.find(params[:id])
         @user_information = @user.build_user_information

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @user_information }
    end
  end



def create
    @user_information = UserInformation.new(params[:user_information])

    respond_to do |format|
      if @user_information.save
        format.html { redirect_to @user_information, notice: 'User information was successfully created.' }
        format.json { render json: @user_information, status: :created, location: @user_information }
      else
        format.html { render action: "new" }
        format.json { render json: @user_information.errors, status: :unprocessable_entity }
      end
    end
  end

一切正常,但是当我尝试更新记录时出现此错误:

RuntimeError in User_informations#edit

Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id

这是我的 user_information 控制器的编辑和更新操作

    def edit
        @user_information = UserInformation.find(params[:id])
      end 

  def update
    @user_information = UserInformation.find(params[:id])

    respond_to do |format|
      if @user_information.update_attributes(params[:user_information])
        format.html { redirect_to @user_information, notice: 'User information was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @user_information.errors, status: :unprocessable_entity }
      end
    end
  end

我以为我只需要找到记录和编辑,但没有。任何人都可以帮助我吗?

4

1 回答 1

0

尝试belongs_to :userUserInformation http://guides.rubyonrails.org/association_basics.html#the-has_one-association中删除

讨论后更新

@user您的链接助手应该在第一个位置接受两个参数。(您可以从 的结果中看到它rake routes | grep user_information

<%= link_to 'Edit', edit_user_information_path(@user, @user_information) %>

其次在你的控制器中

params[:id] # => @user.id
params[:user_information_id] # => @user_information.id

所以你应该find改为

@user_information = UserInformation.find(params[:user_information_id])
于 2012-11-06T19:45:00.707 回答