reactjs 如何访问嵌套数据JSON [已关闭]

ao218c7q  于 2023-03-01  发布在  React
关注(0)|答案(1)|浏览(128)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我需要访问存储在Firebase实时数据库的用户列表中的用户的用户名。

我该怎么访问它?
代码:
第一节第一节第一节第二节第一节
我尝试了上面显示的所有东西,但会得到结果数据:未定义。

xxhby3vn

xxhby3vn1#

用于每个
常量读取用户数据=()=〉{ firebase.数据库().ref(“用户列表/”).once(“值”,函数(快照){

let values = [];
  console.log('child.key',child.key);
  snapshot.forEach((child) => {
    values.push(child.val());
  });
  console.log(values);

console.log(snapshot.val());

)} }

相关问题