Rails 3路由问题

时间:2011-01-06 09:21:42

标签: ruby-on-rails routing

我将Rails-2应用程序转换为Rails-3。在我的Rails-2路由中,我有如下的路由

Rails 2

map.connect 'example/:action/:id.:format', :controller => 'Test',:q =>'example-string'

注意:这在Rails-2应用程序中运行良好;当网址带有/example时,它会使用参数q="example-string"重定向到测试控制器的索引操作

我将上面的内容转换为支持Rails-3路由:

match 'example(/:action(/:id.(:format)))',:to => 'Test',:q=>'example-stirng'

问题是我找不到路由错误/example

如何将Rails-2路由更改为Rails-3路由?

1 个答案:

答案 0 :(得分:0)

你几乎做对了。应该是

match 'example(/:action(/:id.(:format)))',:controller => :test, :q=>'example-stirng'

:to => "foo#bar":controller => :foo, :action => :bar

的快捷方式