名前空間「ショップ」があります。その名前空間には、リソース「ニュース」があります。
namespace :shop do
resources :news
end
私が今必要としているのは、私の「ニュース」ルートが新しいパラメーターを取得できることです:
/shop/nike (landing page -> goes to "news#index", :identifier => "nike")
/shop/adidas (landing page -> goes to "news#index", :identifier => "adidas")
/shop/nike/news
/shop/adidas/news
ショップを取得してニュースをフィルタリングできるように。
次のようなルートが必要です:
/shop/:identfier/:controller/:action/:id
多くのバリエーションをテストしましたが、実行できません。
誰でも私にヒントを得ることができますか?ありがとう。