根據其屬性,如何使資源的路由足夠靈活?Rails路由:取決於屬性的靈活資源路徑
例如,
resources :articles, param: :article_slug do
member do
resources :comments
end
end
Article
具有title, category, slug, etc
屬性但客戶端想要認爲類別必須存在於URL中的第一,如:/entertainment/articles/:article_slug/comments/:id
或/sports/articles/:article_slug/comments/:id
。我不知道這個方法的正確方法是什麼。
你現在有什麼網址?在運行'耙路線'後 –
我只是'/ articles /:article_slug/comments /:id' –