我对新的Rails应用程序有一些奇怪的要求.我需要构建一个应用程序,其中所有路由都在多个名称空间中定义(让我解释一下).我希望有一个应用程序,其中学校科目(数学,英语等)是名称空间:
%w[math english].each do |subject| namespace subject.to_sym do resources :students end end
这很棒,它可以工作,但它需要我为每个主题创建一个命名空间的StudentsController,这意味着如果我添加一个新的主题,那么我需要创建一个新的控制器.
我想要的是创建一个Base :: StudentsController,如果让我说Math :: StudentsController存在然后它将被使用,如果它不存在,那么我们可以动态创建这个控制器并继承Base :: StudentsController .
这是可能的吗?如果是这样,那么我将如何实施呢?
解决方法
使用这种方式定义路由:
%w[math english].each do |subject| scope "/#{subject}" do begin "#{subject.camelcase}::StudentsController".constantize resources :students,controller: "#{subject}::students",only: :index rescue resources :students,controller: "base::students",only: :index end end end
耙路线输出:
students GET /math/students(.:format) base::students#index GET /english/students(.:format) english::students#index
如果有english / students_controller.rb和math / students_controller.缺席.