ネストされたリソースがあります:
resources :posts do
resources :comments
end
私の現在link_to
はこれです:
<%= link_to 'Reply', [:new, @post, :comment] %>
その結果:
http://example.com/posts/8/comments/new
しかし、私はこのようなリンクが必要です:
http://example.com/posts/8/comments/new?parent_id=7
link_to
そのリンクを作成するにはどうすればよいですか?