这些是我的路线:
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吗?
谢谢