是否可以拥有
include Elasticsearch::Model
include Elasticsearch::Model::Callbacks
在模块上?怎么会这样?
答案 0 :(得分:2)
您可以使用included
module MyElasticSupport
extend ActiveSupport::Concern
included do
include Elasticsearch::Model
include Elasticsearch::Model::Callbacks
end
... some other code ...
end
class MyModel
include MyElasticSupport
... some other code ...
end
块来包含这些模块
类似的东西:
{{1}}