我目前有一个已经很大的控制器。我想知道减少控制器的最佳方法是什么。我不一定会寻找最简单的方法,而是一种安全有效的方式。我一直在用Rails开发一段时间但是我仍然不熟悉“子类化”的工作方式,我甚至不确定它是否应该以这种方式使用。我想的可能是这样的?
class SomeController < ApplicationController
end
class MoreFunctionsController < SomeController
end
目前尚未经过测试 - 我现在仍在努力 - 但我希望这会让你知道我想要走的方向。我也不确定这样做的路由是什么。什么是“拆分”大型控制器的最佳方法?
答案 0 :(得分:10)
ActiveSupport::Concern
(documentation)正是您要找的。 p>
更新
这样的事情:
# config/application.rb
config.autoload_paths += %W(#{Rails.root}/app/controllers/concerns) # in Rails4 this is automatic
# app/controllers/my_controller.rb
class MyController < ApplicationController
include GeneralStuffConcern
def index
render text: foo
end
end
# app/controllers/concerns/general_stuff_concern.rb
module GeneralStuffConcern
extend ActiveSupport::Concern
def show
redirect_to root_path
end
protected
def foo
'fooo'
end
end
更新2
我实际上建议更多http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models/