我的路线中有这个.rb:
resources :profiles, :only => :show
我正在构建一个这样的链接:<%= link_to( "profile", profile_path(13)) %>
并且它给了我一个/profile?id=13
的网址 - 我希望它能给我/profiles/13
(因为那个工作)。
我做错了什么?
此资源的Rake路由结果:
GET /profiles/:id(.:format) profiles#show