English 中文(简体)
Can controller names in RESTful routes be optional?
原标题:

With a standard map.resource routing mechanics and several nested resources the resultant routes are unnecessarily long. Consider the following route:

site.org/users/pavelshved/blogs/blogging-horror/posts/12345

It s easy to create in routes.rb, and I m sure it follows some kind of beneficial routing logic. But it s way too long and also seems like it s not intended to be human-readable.

A nice improvement would be to drop controller names, so it looks like:

site.org/pavelshved/blogging-horror/12345

Clear, simple, short. It may become ambiguous, but in my case I m not going to name any user "users", for instance.

I tried setting :as => , but it yields routes like this: site.org//pavelshved//blogging-horror//12345 when generating them by standard helpers.

Is there a way to map resources in such a way, that controller names become optional?

问题回答

You re looking for the :path_prefix option for resources.

map.resources :users do |user|
  user.resources :blogs do |blog|
    blog.resources :posts, :path_prefix =>  /:user_login/:blog_title/:id 
  end
end

Will produce restful routes for all blogs of this form: site.org/pavelshved/bogging-horror/posts/1234. You ll need to go to a little extra effort to use the url helpers but nothing a wrapper of your own couldn t quickly fix.

The only way to get rid of the posts part of the url is with named routes, but those require some duplication to make restful. And you ll run into the same problems when trying to use route helpers.

The simplest way to get what you want would be to create a route in addition to your RESTful routes that acts as a shorthand:

map.short_blog  :user_id/:blog_id/:id , :controller =>  posts , :action =>  show 

You ll have to change the URL bits to work with how you re filtering the name of the user and the name of their blog. But then when you want to use the shorter URL you can use all the short_blog_* magic.

Straight out of the default routes.rb:

map.connect  products/:id , :controller =>  catalog , :action =>  view 

You could write:

map.connect  :user_id/:blog_id/:id , :controller =>  posts , :action =>  show 

But be sure to include that in the very end of the file, or it will try to match every three levels deep url to it.

Try this

map.pavelshved  /pavelshved/ , :controller => :users, :action => view or
map.pavelshved  /:id , :controller => :users, :action => show do | blogs|
  blogs.bloging  /:id , :controller => :blogs, :action => show do | post|
    post.posting  /:id , :controller => :posts, :action => show
  end
end

I hope it work :)

Google "rails shallow routes" for information about this.





相关问题
rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

activerecord has_many :through find with one sql call

I have a these 3 models: class User < ActiveRecord::Base has_many :permissions, :dependent => :destroy has_many :roles, :through => :permissions end class Permission < ActiveRecord::...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签