我有一个像这样的文件:
app / controllers / application_controller.rb
class ApplicationController < ActionController::Base
... lots of code
before_action :set_campaign
... lots of code
end
该类太大,因此我尝试将before_action :set_campaign
行移到外面,像这样:
app / controllers / application_controller.rb
class ApplicationController < ActionController::Base
... lots of code
include Foomodule
... lots of code
end
# app/lib/foomodule.rb
module Foomodule
before_action :set_campaign
end
但这似乎不起作用。我得到:
undefined method `before_action' for Foomodule:Module