处理Rails中的模糊路由

时间:2010-08-09 14:53:45

标签: ruby-on-rails url-routing

这是我的困境:我有两种语义非常不同的路由,应该去不同的控制器。

ny/new-york/brooklyn/cleaners # should go to a list of cleaners for a neighborhood
ny/new-york/cleaners/mrclean  # should go to an individual cleaner's page

请注意,这里的“布鲁克林”和“清洁工”只是一个例子。该应用程序有许多服务类型(例如“清洁”)和许多邻域,因此不可能将列表硬编码到正则表达式中并使用它来区分这两个路径。

是否可以在路由决策中涉及访问ActiveRecord模型的任意方法?我正在使用Rails 2.3.8。

1 个答案:

答案 0 :(得分:5)

修改动态服务的新答案

看看这个blog entry,似乎可以在路线中使用ActiveRecords。

也许你可以这样做:

service_names = Service.all.map(&:short_name) # assuming the property 'short_name' is the value used in urls  
service_names.each do |service_name|
  map.connect ':state/:city/#{service_name}/:company' :controller => ‘company’, :action => ‘show’   # to show the company's page
  map.connect ':state/:city/:neighborhood/#{service_name}_finder' :controller => ‘company_finder’, :action => ‘find’ # to list the companies for the given service in a neighborhood
end

这应该仍然可以防止冲突,因为某个服务的路线在邻域的路线之前


旧的错误答案

你不能使用以下两条路线吗?

map.connect ':state/:city/cleaners/:cleaner' :controller => ‘cleaners’, :action => ‘show’   # to show the cleaner's page
map.connect ':state/:city/:neighborhood/cleaners' :controller => ‘cleaner_finder’, :action => ‘find’ # to list the cleaners of a neighborhood

在你的控制器中,你应该能够使用params [:state],params [:city]等检索:state,:city和其他值。

在第一行放置:state /:city / cleaners /:cleaner可以防止出现歧义。