提交 9e085a9f 编写于 作者: X Xavier Noria

adds a comment explaining why BigDecimal#as_json returns a JSON string

上级 34d57251
# encoding: utf-8
require 'bigdecimal'
require 'active_support/core_ext/array/wrap'
require 'active_support/core_ext/big_decimal/conversions'
require 'active_support/core_ext/big_decimal/conversions' # for #to_s
require 'active_support/core_ext/hash/except'
require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/module/delegation'
......@@ -179,6 +179,14 @@ def encode_json(encoder) to_s end #:nodoc:
end
class BigDecimal
# A BigDecimal would be naturally represented as a JSON number. Most libraries,
# however, parse non-integer JSON numbers directly as floats. Clients using
# those libraries would get in general a wrong number and no way to recover
# other than manually inspecting the string with the JSON code itself.
#
# That's why a JSON string is returned. The JSON literal is not numeric, but if
# the other end knows by contract that the data is supposed to be a BigDecimal,
# it still has the chance to post-process the string and get the real value.
def as_json(options = nil) to_s end #:nodoc:
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册