次の結果を得るために、ルートを定義するにはどうすればよいですか。
new_ad GET /ads/new/:type(.:format) ads#new
ads POST /ads(.:format) ads#create
edit_ad GET /ads/:id/edit(.:format) ads#edit
ad GET /ads/:id(.:format) ads#show
PUT /ads/:id(.:format) ads#update
DELETE /ads/:id(.:format) ads#destroy
一般に、新しいパスで type param を指定し、次のようなユーザー パス ヘルパーを使用できるようにする必要があります。
new_ad_path("somytype") # -> ads/new/somytype -> ads#new -> params[:type] = "somytype"