目标:保存想法模型的评论。
形式:
<%= form_for([@idea, IdeaComment.new], :validate => true) do |f| %>
<div class="control-group">
<div class="controls">
<%= f.text_area :text, :placeholder => 'some text', :rows => 5 %>
<%= validate_errors(IdeaComment.new) %>
</div>
</div>
<%= f.button 'Comment', :class => 'button grad-green', :type => 'submit' %>
<% end %>
控制器:
@idea_comment = IdeaComment.new(params[:idea_comment])
...
但是如果我们看一下 params hash:
如何将idea_id 传递给“idea_comment”?