Mongoid标准不返回任何内容

时间:2014-05-13 14:13:39

标签: ruby-on-rails mongoid

我需要创建一个不返回任何内容的mongoid标准。我找不到任何“无”方法,所以我做的是Model.where(id:nil)或Model.any_in(id:nil)。 但是这不好,还会查询数据库。

我想将我自己的选择器添加到mongoid,它将返回一个空结果,甚至不查询db(例如Model.none()),但不知道在哪里/如何做。有人可以帮忙吗?

注意:我需要这个,因为调用者可能会链接标准而不必知道它已经是空的。

1 个答案:

答案 0 :(得分:6)

您使用的是什么版本的Mongoid?因为当我尝试Model.none时,它会返回一个空集:

Model.none
Model.none.count # => 0
版本4中添加了

none。如果无法更新到该版本,则可以尝试集成更改。需要定义at line 309 in /lib/mongoid.criteria.rb处的这些方法:

def none
  @none = true and self
end

def empty_and_chainable?
  !!@none
end

Mongoid::Contextual#create_context还需要to be changed

def create_context
  return None.new(self) if empty_and_chainable?
  embedded ? Memory.new(self) : Mongo.new(self)
end

然后你可以加入`/lib/mongoid/contextual/none.rb'

编辑this Gist backports .none to Mongoid 3

module Mongoid
  class Criteria
    def none
      @none = true and self
    end

    def empty_and_chainable?
      !!@none
    end
  end

  module Contextual  
    class None
      include ::Enumerable

      # Previously included Queryable, which has been extracted in v4
      attr_reader :collection, :criteria, :klass

      def blank?
        !exists?
      end
      alias :empty? :blank?

      attr_reader :criteria, :klass

      def ==(other)
        other.is_a?(None)
      end

      def each
        if block_given?
          [].each { |doc| yield(doc) }
          self
        else
          to_enum
        end
      end

      def exists?; false; end

      def initialize(criteria)
        @criteria, @klass = criteria, criteria.klass
      end

      def last; nil; end

      def length
        entries.length
      end
      alias :size :length
    end

    private

    def create_context
      return None.new(self) if empty_and_chainable?
      embedded ? Memory.new(self) : Mongo.new(self)
    end  
  end

  module Finders
    delegate :none, to: :with_default_scope
  end
end