我想知道如何在rails中做到这一点
因为我想要像
这样的东西<a href="requests/13#new">Comment!<a>
谁知道呢?
问候
答案 0 :(得分:3)
<%= link_to "Comment!", url_for(:controller => "requests", :action => "show", :id => 13, :anchor => "new") %>
如果您正在使用Request对象和一条宁静路线。
<%= link_to "Comment!", request_path(@request, :anchor => "new") %>
link_to helper documentation中提供了更多详细信息。