現在我得到:如何在JBuilder中的默認返回空字符串,而不是「<null">
{"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
我不明白,並在那裏我應該把這個方法? – tomekfranek
就在你獲得json數據之後。 – anand4tech