0

我有两个类,用户和联系人。一个用户有很多联系人,一个联系人属于一个用户。在用户的显示视图中,我有:

<%= link_to 'Add Contact', :controller => "contacts", :action => "new", :user => @user.id %>

然后,在联系人的控制器中,在新操作下,我有:

@user = User.find(params[:user])
@contact = Contact.new  
@contact.user = @user

当新的联系表单呈现时,它的用户字段中已经有 #<User:0x4c52940>。但是,当我提交表单时,出现错误:预期用户(#39276468),得到字符串(#20116704)。

问题是,当调用 create 时,Ruby 会获取表单中的所有内容并覆盖新联系人中的字段。那么:如何更改表单以删除用户字段,以便用户不会被字符串覆盖?

编辑:我的联系人的 new.html.erb 有这个:

 <%= render 'form' %>
 <%= link_to 'Back', contacts_path %>

联系人的控制器:

def new
@user = User.find(params[:user])
@contact = Contact.new

@contact.user = @user


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

def create
@contact = Contact.new(params[:contact])

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

1 回答 1

1

我相信您滥用了控制器的创建操作。本质上它的内容应该是这样的

def create
   @user = User.find(params[:user_id])
   contact = @user.contacts.build(params[:contact])
   if contact.save
     flash[:alert] = 'New contact is created'
     redirect_to contacts_path(contact)
   else
     flash.now[:error' = 'Error creating contract'
     render :action => :new
   end
end

所以 +1 上一个答案 - 向您展示控制器和新表单代码

于 2012-12-11T19:46:35.447 回答