1

我有

Class Question < ActiveRecord::Base
    has_many :answers
end

class Answer < ActiveRecord::Base
    belongs_to :question
end

我的问题索引操作列出了所有问题和基本的 CRUD 操作。

<% @questions.each do |question| %>

在这个循环中,我有另一个可以显示该问题的所有答案

<% question.answers.each do |answer| %>

在操作按钮之后,我呈现了部分答案表单

<%= render partial: 'answers/form' , question_id: question.id%>

但是当它们部分呈现时question_id,答案是离开 1。

我也试过

<%= render partial: 'answers/form', :locals => {:question_id => question.id} %>

仍然没有成功。这是完整的索引和表单代码。 https://gist.github.com/CassioGodinho/7412866 (请忽略索引上的数据切换,它还没有工作)

4

2 回答 2

2

将新实例变量作为局部变量传递给局部变量不是一个好习惯,您可以构建答案,然后将其作为局部变量传递

<%= render partial: 'answers/form', :locals => {:answer => question.answers.build} %>

并且在部分

<div class="answer_form">
<%= form_for(answer) do |f| %>
<% if answer.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(answer.errors.count, "error") %> prohibited this answer from being saved:</h2>
<ul>
<% answer.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :content %><br>
<%= f.text_area :content %>
</div>
<div>
<%= f.label :question %>
<%= f.collection_select(:question_id, @questions, :id, :title) %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
</div>
于 2013-11-11T13:33:10.873 回答
1

正如 Thomas Klemm 所展示的,将 @answer 传递给部分更容易。

<%= render partial: 'answers/form', :locals => {:@answer => question.answers.build} %> 
于 2013-11-11T13:23:46.013 回答