我有 2 个模型,看起来像这样:
Category:
id
name
permalink
例如 1 "Foo Bar" foo-bar
Item:
id
title
permalink
category_id
所以这两个模型之间存在关联。现在我想实现以下路线:
http://www.bla.com/Category_permalink/Item_ID/Item_permalink
我现在拥有的是以下内容,这是不正确的:
match ':category_name/:item_id/:item_permalink' => 'items#show', :as => :item
这条线没有按预期工作。这里有什么建议吗?
提前致谢