gpt4 book ai didi

ruby-on-rails - “split” 启动大型 Rails Controller 的最佳方法

转载 作者:行者123 更新时间:2023-12-04 03:34:49 26 4
gpt4 key购买 nike

我目前有一个已经很大的 Controller ,而且越来越大。我想知道精简 Controller 的最佳方法是什么。我不一定要寻找最简单的方法,而是一种安全有效的方法。我已经用 Rails 开发了一段时间,但我仍然不熟悉“子类化”是如何工作的,我什至不确定它是否应该以这种方式使用。我在想也许是这样的?

class SomeController < ApplicationController
end

class MoreFunctionsController < SomeController
end

目前尚未经过测试——我现在仍在努力——但我希望这能让你了解我正在努力的方向。我也不确定这个路由会是什么样子。 “拆分”大型 Controller 的最佳方法是什么?

最佳答案

ActiveSupport::Concern (documentation)就是你要找的。

更新

像这样的东西:

# 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/

关于ruby-on-rails - “split” 启动大型 Rails Controller 的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18745021/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com