有没有办法确保使用mongoid的地理哈希顺序?

时间:2011-12-20 13:05:51

标签: ruby mongodb mongoid

有没有办法确保使用mongoid的地理哈希顺序?

目前我以这种方式存储它并在回调中做一些魔术来确保顺序:

field :location, type: Hash // { :lng => 33.33, :lat => 45 }

set_callback(:save, :before) do |doc|
  if doc.location_changed?
      doc.location = {lng: doc.location[:lng], lat: doc.location[:lat]}
  end
end

可能有一些方法可以将此Hash声明为类。我想过Embeded Document,但它有_id。

2 个答案:

答案 0 :(得分:1)

可以使用mongoid custom field serialization

以下是一个很好的例子:https://github.com/ricodigo/shapado/blob/master/app/models/geo_position.rb

这是我自己的实现,它将mongodb中的位置存储为数组:

class LatLng
  include Mongoid::Fields::Serializable

  attr_reader :lat, :lng

  def serialize(value)
    return if value.nil?

    if value.is_a?(self.class)
      [value.lng.to_f, value.lat.to_f]
    elsif value.is_a?(::Hash)
      hash = value.with_indifferent_access
      [hash['lng'].to_f, hash['lat'].to_f]
    end
  end

  def deserialize(value)
    return if value.nil?

    value.is_a?(self.class) ? value : LatLng.new(value[1], value[0])
  end

  def initialize(lat, lng)
    @lat, @lng = lat.to_f, lng.to_f
  end

  def [](arg)
    case arg
      when "lat"
        @lat
      when "lng"
        @lng
    end
  end

  def to_a
    [lng, lat]
  end

  def ==(other)
    other.is_a?(self.class) && other.lat == lat && other.lng == lng
  end
end

答案 1 :(得分:0)

使用BSON::OrderedHash

BSON::OrderedHash[:lng => 33.33, :lat => 45]