我是NoSQL数据库的新手。目前,我正在尝试使用Firebase并将其与iOS集成。当涉及到通过尝试和错误来预定义数据库时,我尝试使其看起来像这样:
当我尝试在iOS中检索“故事”路径时,得到的json结构如下:
[
<null>,
{
comments: [
<null>,
1,
2,
3
],
desc: "Blue versus red in a classic battle of good versus evil and right versus wrong.",
duration: 30,
rating: 4.42,
tags: [
<null>,
"fantasy",
"scifi"
title: "The Order of the Midnight Sun",
writer: 1
]
}
]
我的问题是,为什么每个数组的开头总是有一个null?我应该如何在数据库编辑器中避免使用null?