以下是我Concerns::V1::PlanFinding
对控制器的关注。根据base
控制器和动作,它调用set_plan
extend ActiveSupport::Concern
attr_accessor :plan, :custom_key
included do |base|
actions = case base.to_s
when "Api::V1::PlansController"
[:show, :total_prices, :update]
when "Dist::PlansController"
[:show, :total_prices, :flight_info]
end
if actions.present?
before_action :set_plan, only: actions
else
before_action :set_plan
end
end
def set_plan
@plan = Model.find('xxx')
@custom_key = params[:custom_key] || SecureRandom.hex(10)
end
以下是我提出问题的一个控制器:
class Dist::PlansController
include ::Concerns::V1::PlanFinding
这运行良好。但是关注代码与控制器太粘了base
。
我的问题是:由于我们不能only
在控制器中使用如下选项。如何实现我自己only
的包含选项,或找到一种新方法将base
控制器与关注点分离:
include Concerns::V1::PlanFinding, only: [:show]