我有嵌套资源:
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
来创建该链接?