ruby-on-rails – 通过模块共享范围?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 通过模块共享范围?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想通过将共享范围移动到一个模块中来干掉几个模型,像:
module CommonScopes
  extend ActiveSupport::Concern

  module ClassMethods
    scope :ordered_for_display,order("#{self.to_s.tableize}.rank asc")
  end
end

我也想创建测试模块的共享规范.不幸的是,当我尝试将共享范围包含在我的模型中时,我得到:

undefined method `order' for CommonScopes::ClassMethods:Module

有任何想法吗?谢谢!

解决方法

你可以使用 instance_eval
module CommonScopes
  extend ActiveSupport::Concern

  def self.included(klass)
    klass.instance_eval do
      scope :ordered_for_display,order("#{self.to_s.tableize}.rank asc")
    end
  end
end
原文链接:https://www.f2er.com/ruby/273136.html

猜你在找的Ruby相关文章