我的问题模板列出了答案,并让somone为问题添加新答案。
但我不知道在哪里以及如何初始化这一行的新答案:
<%= link_to 'New answer', new_question_answer_path(@question, Answer.new) %>
来自以下背景:
<p>
<b>Body:</b>
<%=h @question.body %>
</p>
<h1>Listing answers</h1>
<table>
<tr>
<th>Body</th>
</tr>
<% @question.answers.each do |answer| %>
<tr>
<td><%=h answer.body %></td>
<td><%= link_to 'Show', answer %></td>
<td><%= link_to 'Edit', edit_answer_path(answer) %></td>
<td><%= link_to 'Destroy', answer, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New answer', new_question_answer_path(@question, Answer.new) %>
<%= link_to 'Edit', edit_question_path(@question) %> |
<%= link_to 'Back', questions_path %>
如果我按照以下方式初始化新答案:
<%= link_to 'New answer', new_question_answer_path(@question, Answer.new) %>
下一页的网址会因检查新答案而出现乱码。
答案 0 :(得分:3)
试试这个:
<%= link_to 'New answer', new_question_answer_path(@question) %>