Rails 3.2:用json序列化中的空字符串替换空值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rails 3.2:用json序列化中的空字符串替换空值相关的知识,希望对你有一定的参考价值。
我使用Rails 3.2 serialization将ruby对象转换为json。
例如,我已将ruby对象序列化为以下json
{
"relationship":{
"type":"relationship",
"id":null,
"followed_id": null
}
}
在我的类Relationship < ActiveRecord::Base 中使用以下序列化方法
def as_json(opts = {})
{
:type => 'relationship',
:id => id,
:followed_id => followed_id
}
end
我需要用空字符串替换空值,即空双引号,以响应json。
我怎样才能做到这一点?
最好的祝福,
答案
可能不是最好的解决方案,但受到这个answer的启发
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
另一答案
我没有在这里看到问题。只需通过||
运营商:
def as_json(opts = {})
{
:type => 'relationship',
:id => id || '',
:followed_id => followed_id || ''
}
end
另一答案
使用下面的方法,您将获得修改的哈希或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
以上是关于Rails 3.2:用json序列化中的空字符串替换空值的主要内容,如果未能解决你的问题,请参考以下文章
Ruby on Rails 序列化然后反序列化 JSON 中的同一个对象
postgresql中的Rails json列不接受任何值,并在存储后调用时返回nil