3

我正在使用 Rails 3.2序列化将 ruby​​ 对象转换为 json。

例如,我已将 ruby​​ 对象序列化为以下 json

{
  "relationship":{
    "type":"relationship",
    "id":null,
    "followed_id": null
  }
}

在我的类关系中使用以下序列化方法 < ActiveRecord::Base

def as_json(opts = {})
  {
   :type        => 'relationship',
   :id          => id,
   :followed_id => followed_id
  }
end

我需要用空字符串替换空值,即空双引号,以响应 json。

我怎样才能做到这一点?

最好的祝福,

4

3 回答 3

4

我没有看到这里的问题。只需通过||运算符即可:

def as_json(opts = {})
  {
   :type        => 'relationship',
   :id          => id || '',
   :followed_id => followed_id || ''
  }
end
于 2012-05-30T07:23:06.983 回答
4

可能不是最好的解决方案,但受到这个答案的启发

def as_json(opts={})
  json = super(opts)
  Hash[*json.map{|k, v| [k, v || ""]}.flatten]
end

- 编辑 -

根据 jdoe 的评论,如果您只想在 json 响应中包含一些字段,我更喜欢这样做:

def as_json(opts={})
  opts.reverse_merge!(:only => [:type, :id, :followed_id])
  json = super(opts)
  Hash[*json.map{|k, v| [k, v || ""]}.flatten]
end
于 2012-05-30T11:43:21.910 回答
0

使用以下方法,您将获得修改后的哈希或 json 对象。它将用 nill 替换空白字符串。需要在参数中传递哈希值。

def json_without_null(json_object)
  if json_object.kind_of?(Hash)
    json_object.as_json.each do |k, v|
      if v.nil?
        json_object[k] = ""
      elsif  v.kind_of?(Hash)
        json_object[k] = json_without_null(v)
      elsif v.kind_of?(Array)
        json_object[k] = v.collect{|a|  json_without_null(a)}
      end
    end
  end
  json_object
end
于 2019-04-17T06:19:00.990 回答