Ruby オブジェクトを json に変換するためにRails 3.2シリアライゼーションを使用しています。
たとえば、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で、null値を空の文字列、つまり空の二重引用符に置き換える必要があります。
どうすればこれを達成できますか?
よろしくお願いします、