为什么is_a?
会为false
课程返回Hash
?
示例:
value = {"x" => 3, "y" => 2}
puts value.class
puts value.is_a?(Hash)
输出:
Hash
false
我正在使用Ruby 1.9.2
更新:我班级的完整来源:
class LatLng
include Mongoid::Fields::Serializable
attr_reader :lat, :lng
def serialize(value)
return if value.nil?
puts value.class
puts value.is_a?(Hash)
if value.is_a?(self.class)
puts "is geopoint" + value.to_json
{'lng' => value.lng.to_f, 'lat' => value.lat.to_f}
elsif value.is_a?(Hash)
hash = value.with_indifferent_access
puts "is hash" + value.to_json
{'lng' => hash['lng'].to_f, 'lat' => hash['lat'].to_f}
end
end
def deserialize(value)
return if value.nil?
value.is_a?(self.class) ? value : LatLng.new(value['lat'], value['lng'])
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
答案 0 :(得分:19)
#irb
ruby-1.9.3-p0 :001 > value = {"x" => 3, "y" => 2}
=> {"x"=>3, "y"=>2}
ruby-1.9.3-p0 :002 > value.is_a?(Hash)
=> true
尝试禁用已加载的任何gem / extensions,并尝试使用clean ruby
<强>更新强>
尝试value.is_a?(::Hash)
PS:尝试阅读Ruby中的Duck Typing。也许您应该致电value.respond_to?(:key)
而不是value.is_a?(Hash)
答案 1 :(得分:3)
当我在Hash类之前添加“::”时,它开始工作。
puts value.class
puts value.is_a?(::Hash)
输出:
Hash
true
答案 2 :(得分:2)
没有。
dave@hpubuntu1:~ $ rvm list
rvm rubies
ruby-1.8.7-p334 [ i386 ]
jruby-1.6.2 [ linux-i386-java ]
ruby-1.9.2-p0 [ i386 ]
ruby-1.9.2-p290 [ i386 ]
ruby-1.9.3-p0 [ i386 ]
=> ruby-1.9.2-p180 [ i386 ]
dave@hpubuntu1:~ $ pry
pry(main)> value = {"x" => 3, "y" => 2}
=> {"x"=>3, "y"=>2}
pry(main)> value.is_a? Hash
=> true
Mongoid Hash
不是纯Ruby Hash
,也不是扩展它。您应该检查实际类型,可能使用type
。
仅仅因为打印出Hash
的内容并不意味着(a)它是你认为的继承链的一部分,并且(b)它是Hash
(见证ActiveRecord {{1在某种程度上,这是谎言。