现在我得到:
{"id":1,"name":"HerzASS ratiopharm","dosage":null}
我想返回""
而不是null
但默认情况下。如何实现。我不想m.dosage || ""
为我的应用程序中的每个属性添加。
我将我的 jbuilder 视图保留在views/api/documents/_document.json.jbuilder
json.id document.id
json.category document.category # sometimes this is nil
json.note document.note
json.attachments document.attachments do |attachment|
json.url URI.join(request.url, attachment.url).to_s
end
json.created_at document.created_at
json.updated_at document.updated_at