为什么 YAML.load 返回错误的数值?
为什么 YAML.load 返回错误的值?
ruby-1.9.2-p0 :006 > a = YAML.load('merchant_id: 014213245611111')
=> {"merchant_id"=>843333440073}
ruby-1.9.2-p0 :007 > a["merchant_id"]
=> 843333440073
我使用的是 ruby 1.9.2-p0,rvm,ubuntu10.10,64 位。
Why is YAML.load returning the wrong value?
ruby-1.9.2-p0 :006 > a = YAML.load('merchant_id: 014213245611111')
=> {"merchant_id"=>843333440073}
ruby-1.9.2-p0 :007 > a["merchant_id"]
=> 843333440073
I'm on ruby 1.9.2-p0, rvm, ubuntu10.10, 64bit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
YAML 解析器将“014213245611111”视为八进制(以 8 为基数)数字,而不是字符串。将其括在引号中以保留前导 0。
The YAML parser is treating "014213245611111" as an octal (base-8) number, rather than a string. Wrap it in quotes to preserve the leading 0.
前导 0 表示八进制数 — 14213245611111 八进制 == 843333440073 十进制。如果需要有前导零,则应使用字符串值而不是数字。
A leading 0 signifies an octal number — 14213245611111 octal == 843333440073 decimal. If you need to have leading zeroes, you should use a string value instead of numeric.