Rails routing - custom routes for Resources

陌路散爱 提交于 2019-11-30 04:45:11

问题


I'm building currently one Rails app and I'd like to stick to all those fancy things like REST and Resources, but I'd like to customise my routes a little. I want my GET route to be little more verbose - the app I'm creating is a simple blog, so instead of GET /posts/1 I'd prefer something like GET /posts/1-my-first-post.

Any ideas how to do this? Didn't find anything on the web.


回答1:


Routes:

map.resources :posts

Model:

class Post < ActiveRecord::Base
  def to_param
    "#{id.to_s}-#{slug}"
  end
end

Should do the trick.

Btw: http://railscasts.com/episodes/63-model-name-in-url




回答2:


Define a to_param method in your Model and all the url helpers will youse what you return with that method, e.g.:

class Post < ActiveRecord::Base
  der to_param
    slug
  end
end

You will also need to adapt your controllers for that. Replace:

Post.find(params[:id])

with:

Post.find_by_slug(params[:id])

Also note that the find method raises ActiveRecord::RecordNotFound exception when the record can't be found while using the find_by_* method no Exceptions will be raised so you need to check that manually.




回答3:


You could find the friendly_id plugin useful as it will also handle redirections if you rename your slugs (thus seo friendly), handles name collisions and seamlessly integrates with the find method so you don't need to touch your controller methods (except for the redirection thingy).




回答4:


Alternatively...

Add a method like this to post.rb

def path
  "/posts/#{id}-#{slug}"
end

Then use the following in your views:




回答5:


Alternatively...

Add a method like this to application_helper.rb

def permalink(post)
  "#{post_path(post)}-#{post.slug}"
end

Then use the following in your views (using permalink(@post) instead of post_path)

<%= link_to @post.title, permalink(@post) %>


来源:https://stackoverflow.com/questions/2268801/rails-routing-custom-routes-for-resources

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!