0
我有網址類似http://example.com/posts/?tag=2
如何讓美麗的網址
我routes.rb
是
resources :posts do
get 'tag', :on => :collection
end
我需要一個像http://example.com/posts/tag/linux
我的表的鏈接是:
posts(id,title)
tags(id,name)
taggings(id, post_id, tag_id)
這裏有幾個選項:https://gist.github.com/1209732 – Brian