我正在尝试使用Postmarkdown gem向我现有的网站添加一个简单的博客。不幸的是,我已经有一个Post
模型,所以邮戳与该命名空间冲突
我怎样才能告诉邮戳使用不同的名称,如BlogPost
或其他东西?
您可以通过修改 routes.rb 中的"postmarkdown"行来更改默认路由路径。例如:
postmarkdown :as => :blog
这将产生以下路线:
http://example.com/blog # lists all posts
http://example.com/blog/2011 # lists all posts from 2011
http://example.com/blog/2011/01 # lists all posts from January 2011
http://example.com/blog/2011/01/01 # lists all posts from the 1st of January 2011
http://example.com/blog/2011/01/01/test-post # show the specified post