我正在使用 rails 4 构建这个应用程序,我想要这样的路线
example.com/users/username
代替
example.com/users/id
为此,我使用了友好 ID。
现在一切正常,所以我不希望这条路线可以访问
example.com/users/id
我应该为所有 CRUD 操作单独创建路由还是有办法改变它?
resources :users do
resources :post do
get 'expand'
get 'current'
end
end
谢谢!