我有像这样的网址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)
我有像这样的网址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)