我想知道是否可以通过路由将参数传递给控制器动作。我有一个通用的操作方法,我想为各种路线调用它。不,我不能在我的路线中使用通配符。
match '/about' => 'pages#show'
match '/terms' => 'pages#show'
match '/privacy' => 'pages#show'
我正在寻找类似的东西:
match '/about' => 'pages#show', :path => "about"
match '/terms' => 'pages#show', :path => "terms"
match '/privacy' => 'pages#show', :path => "privacy"
谢谢。