Rails 3:将表单部分加载到另一个模型/控制器的编辑视图中

时间:2011-02-03 16:48:13

标签: ruby-on-rails web-applications ruby-on-rails-3

我有两个独立的模型/控制器。一个被称为“商人”的另一个叫“公司地点”。我需要能够在同一表单上添加新商家和至少一个位置。使用按钮,我可以根据需要添加更多位置。

使用样本数据我已经在30个商家的前5个中填充了位置数据。现在,Show Merchant视图工作正常,它显示商家和公司位置。

我的问题出现在新的/编辑页面上。我似乎无法将另一个位置放入与商家ID相关联的数据库中。

我得到的错误是:在我尝试在商家编辑页面上添加公司位置后,“未定义的方法`company_locations'为nil:NilClass”。

当我尝试添加新商家时,我也收到错误消息。添加按钮显示两次,一次用于新商家,一次用于添加位置。

在我的模特中我有 merchant.rb

has_many :company_locations, :dependent => :destroy

company_location.rb

belongs_to :merchant

以下是我的文件: 控制器/ merchant_controller.rb

  def new
    @merchant = Merchant.new
    @company_location = @merchant.company_locations.new
  end

  def edit
    @merchant = Merchant.find(params[:id])
    @company_location = @merchant.company_locations.new
  end

控制器/ company_locations_controller.rb

  def create
    @company_location = @merchant.company_locations.build(params[:company_location])
    if @company_location.save
      redirect_to 'merchants/show', :flash => { :success => "Company Location Added" }
    else
      redirect_to 'merchants/index', :flash => { :error => "Location not saved" }
    end
  end
  def update

  end

视图/商家/ new.html.erb

<h1>New merchant</h1>

<%= render 'form' %>

<%= render 'company_locations/form' %>

<%= link_to 'Cancel', merchants_path %>

视图/商家/ _form.html

<%= form_for(@merchant) do |f| %>
  <% if @merchant.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@merchant.errors.count, "error") %> prohibited this merchant from being saved:</h2>

      <ul>
      <% @merchant.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :company_name %><br />
    <%= f.text_field :company_name %>
  </div>
  <div class="field">
    <%= f.label :fanpage_url %><br />
    <%= f.text_field :fanpage_url %>
  </div>
  <div class="field">
    <%= f.label :twitter_id %><br />
    <%= f.text_field :twitter_id %>
  </div>
  <div class="field">
    <%= f.label :website_url %><br />
    <%= f.text_field :website_url %>
  </div>
  <div class="field">
    <%= f.label :contact_email %><br />
    <%= f.text_field :contact_email %>
  </div>
  <div class="field">
    <%= f.label :active %><br />
    <%= f.check_box :active %>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

视图/ company_locations / _form.html.erb

<%= form_for @company_location do |f| %>
    <%= render 'shared/error_messages', :object => f.object  %>
    <div class="field">
    <%= f.label :address1 %><br />
    <%= f.text_field :address1 %>
  </div>
    <div class="field">
    <%= f.label :address2 %><br />
    <%= f.text_field :address2 %>
  </div>
    <div class="field">
    <%= f.label :city %><br />
    <%= f.text_field :city %>
  </div>
    <div class="field">
    <%= f.label :state %><br />
    <%= f.text_field :state %>
  </div>
    <div class="field">
    <%= f.label :zip %><br />
    <%= f.text_field :zip %>
  </div>
    <div class="field">
    <%= f.label :phone %><br />
    <%= f.text_field :phone %>
  </div>
    <div class="field">
    <%= f.label :fax %><br />
    <%= f.text_field :fax %>
  </div>
    <div class="actions">
        <%= f.submit "Add Location" %>
    </div>
<% end %>

1 个答案:

答案 0 :(得分:4)

如果我正确理解您的示例,我认为基本问题是您在视图上为两个单独的模型创建了两个单独的表单。 Rails(以及大多数当前框架)的优点是能够使用“嵌套表单”。这里有一个很好的概述(虽然有点过时):

http://ryandaigle.com/articles/2009/2/1/what-s-new-in-edge-rails-nested-attributes

你可以在这里看到一个很棒的Railscast:

http://railscasts.com/episodes/196-nested-model-form-part-1

一般来说,您应该能够创建一个可以一次编辑Merchant及其关联的CompanyLocations的表单。可能需要一些时间来解决问题,但它可以简化您的控制器和未来的开发。这有用吗?