Использование gem для nested_form в Rails, неопределенный метод "link_to_remove / add" - PullRequest
1 голос
/ 27 февраля 2012

Я пытаюсь использовать гем nested_form, и у меня возникают некоторые проблемы:

Точная ошибка: undefined method link_to_remove for #<ActionView::Helpers::FormBuilder:0xb57e288>

Вот мой new.html.erb:

 <%= javascript_include_tag :defaults, 'nested_form' %>
 <div class="recipe new">
   <h2>Add a new recipe</h2>

   <%= nested_form_for(:recipe, :url => {:action => 'create'}) do |f| %>

     <%= render(:partial => "form", :locals => {:f => f}) %>

     <br />
     <br />
     <div class="form-buttons">
       <%= submit_tag("Create Recipe") %>
     </div>

   <% end %>
 </div>

А вот частичная форма: _form.html.erb :

<%= javascript_include_tag :defaults, 'nested_form' %>

<h3>Recipe Name</h3>
    <%= f.text_field(:recipe_name) %>

<%= fields_for :ingredient do |i| %>
<table summary="Ingredient form fields">
  <tr>
    <td>&nbsp;</td>
    <td>Ingredient</th>
    <td>Quantity</td>
    <td>Measurement Unit</td>
    <td>Total Calories</td> 
    <td>Total Grams</td>       
  </tr>
  <tr>
    <%= i.link_to_remove "Remove this ingredient" %>
     <td><%= fields_for :food do |r| %> <%= r.text_field(:long_desc) %><% end %></td>
     <td><%= i.text_field(:quantity, :size => '6', :maxlength => '6') %></td>
     <td><%= i.text_field(:units, :size => '20', :maxlength => '20') %></td>

  </tr>
<% end %>
 <%= i.link_to_add "Add an ingredient" %>

  <tr>

    <td><%= f.text_field(:total_grams, :size => '4', :maxlength => '4') %></td>    
    <td><%= f.text_field(:carb_calories, :size => '4', :maxlength => '4') %></td>
    <td><%= f.text_field(:fat_calories, :size => '4', :maxlength => '4') %></td>
    <td><%= f.text_field(:protein_calories, :size => '4', :maxlength => '4') %></td>

  </tr>
</table>

Вот модель recipe.rb :

  class Recipe < ActiveRecord::Base

  belongs_to :user
  has_many :foods, :through => :recipe_ingredient
  has_many :recipe_ingredient

  accepts_nested_attributes_for :recipe_ingredient
  attr_accessible :recipe_name, :prep_time_mins, :total_grams, :carb_calories, :fat_calories, :protein_calories
  attr_accessible :recipe_ingredient_attributes

 end

А вот модель recipe_ingredients.rb:

# join table between each individual food item and their individual nutritional data 
class RecipeIngredient < ActiveRecord::Base

    belongs_to :recipe
    belongs_to :food, :foreign_key => 'ndb_no'

    accepts_nested_attributes_for :food
    attr_accessible :food_attributes, :quantity, :units
end

Может кто-нибудь дать мне несколько советов? Спасибо!

1 Ответ

2 голосов
/ 11 марта 2012

У меня была такая же проблема. Я исправил это, перенеся вызов link_to_remove обратно в файл new.html.erb. Кажется, это не работает, если вызов в частичном. Не уверен, как обойти это, хотя.

Обновление: я думаю, что нашел способ обойти это. Вы можете визуализировать частичное так:

<%= f.fields_for :tasks %>

Делать это таким образом, кажется, имеет значение. Я получил это из README на странице github для nested_form (раздел Partials)

...