在rails中解码JSON简单字符串引发错误

时间:2011-05-27 17:57:31

标签: ruby-on-rails json

我正在尝试在json中往返编码/解码普通字符串,但是我收到了错误。

在rails 2.3中。 w / ruby​​ 1.8.6,它曾经工作过。

>> puts ActiveSupport::JSON.decode("abc".to_json)
abc
=> nil

在rails 3.1beta1 w / ruby​​ 1.9.2中,它会引发错误。

ruby-1.9.2-p180 :001 > puts ActiveSupport::JSON.decode("abc".to_json)
MultiJson::DecodeError: 706: unexpected token at '"abc"'
    from /home/stevenh/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/json/common.rb:147:in `parse'
    from /home/stevenh/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/json/common.rb:147:in `parse'
    from /home/stevenh/.rvm/gems/ruby-1.9.2-p180/gems/multi_json-1.0.1/lib/multi_json/engines/json_gem.rb:13:in `decode'
    [...]

这与nil.to_json cannot be parsed back to nil?

中讨论的问题几乎相同

但是nil曾经在2.3 / 1.8.7中工作过。

puts ActiveSupport::JSON.decode(nil.to_json)
nil

这是新常态吗?

3 个答案:

答案 0 :(得分:8)

此更改发生在Rails 3.1.0.rc1中包含的switch from ActiveSupport's JSON backend to MultiJson。根据{{​​3}},由于MultiJson project team对JSON语法的规范,当前行为是正确的并且之前的实现是错误的:

2.  JSON Grammar

   A JSON text is a sequence of tokens.  The set of tokens includes six
   structural characters, strings, numbers, and three literal names.

   A JSON text is a serialized object or array.

      JSON-text = object / array

由于"abc""/"abc/""都不是序列化对象或数组,因此在尝试解码它们时会出错。

RFC4627中的图表强化了此规范。

话虽这么说,这似乎意味着to_json实现中的一个错误导致:

ruby-1.9.2-p180 :001 > "abc".to_json
 => "\"abc\""

答案 1 :(得分:1)

是的,Rails3中发生的事情是新常态。您所说明的变化似乎反映了一个成熟的框架。

名为“编码”的方法& “解码”应该完全符合the JSON spec和彼此的反转。

另一方面,字符串#to_json是一种行为类型的方法,当Array#to_json或Hash#to_json遇到String值时,它可以方便地构建更复杂的JSON对象,这些对象可能是在内部使用的(在ActiveSupport中)。他们的一个组成要素。

答案 2 :(得分:0)

如果您需要恢复该行为,请遵循these steps,即

# in your Gemfile
gem 'yajl-ruby'

# in your application.rb
require 'yajl/json_gem'

完成这些步骤后:

Loading development environment (Rails 3.2.8)
[1] pry(main)> puts ActiveSupport::JSON.decode("abc".to_json)
abc
=> nil
[2] pry(main)> puts ActiveSupport::JSON.decode(nil.to_json)

=> nil