ruby-on-rails – rails 4中的路由问题,关于在rails 3中工作的关键字

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – rails 4中的路由问题,关于在rails 3中工作的关键字前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在rails 3匹配关键字正在工作,但在rails 4匹配关键字不适用于路由

我如何在rails 4中定义这些路由

代码段在3号线上工作

match 'admin',:to => 'access#menu'

match 'show/:id',:to => 'public#show'

match ':controller(/:action(/:id(.:format)))'

我需要铁轨4的通用公式,如铁轨3

match ':controller(/:action(/:id(.:format)))'

解决方法

Rails 4删除了通用匹配项,您现在必须指定要对其进行响应的动词.通常您将路线定义为:
get ':controller(/:action(/:id(.:format)))' => 'foo#matcher'

如果要使用匹配来获取多个动词,可以这样做:

match ':controller(/:action(/:id(.:format)))' => 'foo#matcher',via: [:get,:post]
原文链接:https://www.f2er.com/ruby/266595.html

猜你在找的Ruby相关文章