我有一张桌子,我试图让它更精简。在我看来(这个视图已经是部分(_recipe_ingredient.html.erb),我有以下代码,其中渲染部分不起作用:
<tr>
<td><%= recipe_ingredient.ingredient.name %></td>
<td><%= recipe_ingredient.ingredient.weight1*recipe_ingredient.quantity %></td>
<td><%= recipe_ingredient.ingredient.description1 %></td>
<td><%= recipe_ingredient.quantity %></td>
<td><%= render(:partial => 'recipe_ingredients/edit', :locals =>
{:recipe_ingredient=> recipe_ingredient}) %></td>
<td><%= link_to 'Remove', recipe_ingredient, :confirm => 'Remove ingredient from
recipe?', :method => :delete %></td>
</tr>
以前,我使用link_to编辑recipe_ingredient如下(工作正常),但我不想让用户转到另一个页面进行编辑 - 而是希望表单成为表的一部分:< / p>
<td><%= link_to 'Edit Quantity', edit_recipe_ingredient_path(recipe_ingredient) %></td>
编辑部分(新的非工作代码调用)看起来像:
<h1>Editing recipe_ingredient</h1>
<%= render 'recipe_ingredients/form', :recipe_ingredient => @recipe_ingredient %>
标准格式部分看起来像:
<%= form_for(@recipe_ingredient) do |recipe_ingredient| %>
<% if @recipe_ingredient.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@recipe_ingredient.errors.count, "error") %> prohibited this
recipe_ingredient from being saved:</h2>
<ul>
<% @recipe_ingredient.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= recipe_ingredient.label :quantity %><br />
<%= recipe_ingredient.number_field :quantity %>
</div>
<div class="actions">
<%= recipe_ingredient.submit %>
</div>
<% end %>
主要是,我很困惑为什么它使用link_to,但我不能简单地渲染部分。我得到的错误是undefined method `model_name' for NilClass:Class
在表单partial的第一行。
我尝试在部分形式的@recipe_ingredient中删除“@”,但这也不起作用。
提前感谢您的帮助。
答案 0 :(得分:0)
在您的操作中使用@recipe_ingredient创建对象我认为这是一个编辑操作。
@recipe_ingredient = RecipeIngredient.find_by_id(params[:id)
希望这样可以正常工作。