それらは私のルートです:
resources :forums, :shallow=>true do
resources :topics, :shallow=>true do
resources :posts
end
end
内topics/show.html.erbに投稿を残すためのフォームを追加しました (PostのコメントのようなものですTopic)
<%= form_for [@topic, @post] do |f| %>
<div class="field">
<%= f.label "content" %><br />
<%= f.text_area :content %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
:topic_id問題は、モデル内のフィールドPostが空のままであることです。トピックのIDを自動的に取得するべきではありませんか?
ありがとう