假设我想在我的网站上建立一个带有Rails 3的博客,这将是我唯一拥有的博客.我想使用Rails来实现它,但我不喜欢Rails产生的URL.我想要这样的网址:
example.com/2012/05/10/foo
我不想要像我知道怎么做的东西(使用to_param):
example.com/entries/2012/05/10/foo
我仍然想使用帮手
new_entry_path(@entry) # -> example.com/new entry_path(@entry) # -> example.com/2012/05/10/foo edit_entry_path(@entry) # -> example.com/2012/05/10/foo/edit destroy_entry_path(@entry) form_for(@entry) link_to(@entry.title,@entry)
等等.然后,我会发表评论,并希望将它们作为自己的资源进行访问,例如
example.com/2012/05/10/foo/comments/5
那些网址也应该可以与普通的帮助者一起使用:
edit_entry_comment_path(@entry,@comment) # -> example.com/2012/05/10/foo/comments/5/edit
或类似的东西.
那么是否可以获取没有控制器名称的URL并仍然使用url帮助器方法?只需覆盖to_param将始终只更改url中控制器名称后的部分.获得一些示例代码真的很有帮助.