それらは私のルートです:
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を自動的に取得するべきではありませんか?
ありがとう