0

jbuilderを使用して配列を構築しています。

これは、tree.json.jbuilder コードです。

json.array!(@locations) do |location|
  if location.is_root?
    json.label location.name
    json.id location.id
    ...
  end
end

生成された json には、最初に「未定義」のエントリがいくつか含まれています。

[
   { },
   { },
   { },
   { },
   {
     label: "First Label",
     id: 1,
 ...

未定義 (空白) のエントリを停止する方法はありますか?

ありがとう!!

4

1 に答える 1