3

我有一个简单的类,当用户请求服务器时,我想将其输出为 JSON。

class GeoName

include ActiveModel::Validations
include ActiveModel::Serialization

validates :country_name, :presence => true, :length => {:minimum => 1}
validates :country_code, :presence => true, :length => {:minimum => 1}
validates :province, :presence => true, :length => {:minimum => 1}
validates :district, :presence => true, :length => {:minimum => 1}
validates :zip_code, :presence => true, :length => {:minimum => 1}
validates :city, :presence => true, :length => {:minimum => 1}
validates :street, :presence => true, :length => {:minimum => 1}

attr_accessor :country_name, :country_code, :province, :district, :zip_code, :city, :street


def attributes
 @attributes ||= {'country_name' => country_name, 'country_code' => country_code, 'province' => province,'district' => district,'zip_code' => zip_code,'city' => city, 'street' => street}
end


end

在控制器中,我执行以下操作:

def index
    geoname = GeoName.new 
    geoname.street = "blablabla"
    geoname.city = "blablabla" 
    render :json => geoname.to_json
  end

在路线.rb

controller :testcontroller do
    match 'testme', :to => :index
  end

当我请求 url localhost:3000/testme 时,我收到一个有效的 JSON 响应。但是控制台中存在弃用警告

rvm/gems/ruby-1.9.3-p125@geo/gems/activesupport-3.1.0/lib/active_support/json/decoding.rb:12:in `decode': [DEPRECATION] MultiJson.decode is deprecated and will be removed in the next major version. Use MultiJson.load instead.

Ruby 版本 1.9.3-p125 和 rails - 3.1.0。

4

1 回答 1

0

一个快速的谷歌会显示这是一个警告MultiJSON,应该在进一步的版本中消失(当不推荐使用的代码及其消息从 gem 代码中删除时)。基本上,这是对MultiJSON.decode在其代码中使用的开发人员的警告。如果您不在MultiJSON.decode代码中使用,请忽略它。

一旦依赖的 gem 被更新并且您将更新的 gem 捆绑到您的项目中,该消息可能会消失。

于 2012-05-09T07:53:50.607 回答