多条路由使用同一个控制器? [英] Use same controller for multiple routes?

查看:46
本文介绍了多条路由使用同一个控制器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法编写以下路由,这样您就不必每次都指定相同的控制器?...

Is there a way to write the following routes so you don't have to specify the same controller each time?...

get 'jobs' => 'pages#jobs'
get 'contact' => 'pages#contact'
get 'terms' => 'pages#terms'
get 'privacy' => 'pages#privacy'

推荐答案

这里有几个替代方案:

在这三个中,第一个,即 使用范围作为/" 将创建与由问题中定义的 路由创建的路由完全相同的路由.

Out of the three, the first one i.e., Using scope as "/" would create the exact same routes as the ones created by the routes defined in the question.

scope "/", controller: :pages do
  get 'jobs' 
  get 'contact' 
  get 'terms' 
  get 'privacy' 
end

创建如下路线:

jobs    GET    /jobs(.:format)                      pages#jobs
contact GET    /contact(.:format)                   pages#contact
terms   GET    /terms(.:format)                     pages#terms
privacy GET    /privacy(.:format)                   pages#privacy

2.使用范围作为页面"

scope :pages, controller: :pages do
  get 'jobs' 
  get 'contact' 
  get 'terms' 
  get 'privacy' 
end

创建如下路线:

jobs    GET    /pages/jobs(.:format)                pages#jobs
contact GET    /pages/contact(.:format)             pages#contact
terms   GET    /pages/terms(.:format)               pages#terms
privacy GET    /pages/privacy(.:format)             pages#privacy

3.嵌套路由

resources :pages do
  member do
    get 'jobs' 
    get 'contact' 
    get 'terms' 
    get 'privacy' 
  end
end

创建如下路线:

jobs_page    GET    /pages/:id/jobs(.:format)            pages#jobs
contact_page GET    /pages/:id/contact(.:format)         pages#contact
terms_page   GET    /pages/:id/terms(.:format)           pages#terms
privacy_page GET    /pages/:id/privacy(.:format)         pages#privacy

这篇关于多条路由使用同一个控制器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆