我有一条路线:
get 'api/users/:id/friends/:fid', to: 'friends#show'
我想将:fid
作为可选参数。任何想法?
答案 0 :(得分:6)
将它放在括号中
get 'api/users/:id/friends(/:fid)', to: 'friends#show'
指南中的更多信息(第3.1段) http://guides.rubyonrails.org/routing.html
答案 1 :(得分:4)
请尝试以下代码:
get 'api/users/:id/friends(/:fid)', to: 'friends#show'