Target : アイデア モデルのコメントを保存します。
形:
<%= 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 ハッシュを調べると、次のようになります。
idea_id を「idea_comment」に渡すには?