1

现在我得到:

{"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
4

1 回答 1

0

这是你想要的?

def replace_null(yourhash)
  yourhash.each do |k,v|
    if v == nil then
      yourhash[k] = ""
    end
  end
end

或者

yourhash.each{|k,v| a[k] = "" if v == nil}
于 2013-10-22T10:53:23.357 回答