0
在我的路由器我有兩個嵌套ressources得到嵌套的ID:Rails的路線 - 如何從URI模式
resources :servers do
member do
resources :maintenances
end
end
導致URI模式如下:
maintenance GET /servers/:id/maintenances/:id(.:format) maintenances#show
在maintenance_controller的表演動作我想要得到這些ID如:
@server = Server.find_by(params[:id])
@maintenance = Maintenance.find_by ???
我的問題是:如何可以在我的maintenance_contr中訪問這兩個ID奧勒從URI模式http://localhost/servers/1/maintenances/1