给定一个博客风格的应用程序:
#models
class Post < ActiveRecord::Base
has_many :comments
end
class Comment < ActiveRecord::Base
belongs_to :post
end
#routes.rb
map.resources :posts do |posts|
posts.resources :comments
end
如何在页面上生成指向 id 的路由?例子
/posts/1#comments
/posts/2#comment14