Firebase对象列表被转换为对象数组

时间:2019-01-08 06:15:31

标签: firebase firebase-realtime-database

我将键从1到20的键的对象列表存储在Firebase实时数据库中,但是当我获取数据时,它会转换为零索引为空的对象数组。 如果我将键设置为时间戳记,它将返回数据作为对象。有谁知道为什么将键设置为1到20时将其转换为数组

 {
  1: {...},
  2: {...},
  3: {...},
  4: {...},
  5: {...},
  ....
  20: {...}
}

转换为

 [
  empty,
  {...},
  {...},
  {...},
  {...},
  ....
  {...}
]

enter image description here

enter image description here

0 个答案:

没有答案