我正在使用 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,
...
有什么方法可以停止未定义的(空白)条目吗?
谢谢!!