gpt4 book ai didi

javascript - 显示 firebase 数据库中项目的键

转载 作者:行者123 更新时间:2023-12-03 01:38:55 25 4
gpt4 key购买 nike

我有一个像这样的 firebase 数据库:

       User:

84e2UDSLjeQPqBMjhX3oNbz7Qni2:

anno: "1991"
citta:"Rome"
cognome:"FOXX"
nome: "JAMIE"

如何打印数据库中存储的一个用户的 key ?我正在使用 JavaScript,我正在尝试这个:

var userDB = firebase.database().ref("User");
userDB.once("value").then(function(snapshot) {
snapshot.forEach(function(childSnapshot) {

key = childSnapshot.val().key;
window.alert(key);

});
});

但未定义。

最佳答案

更改此:

key = childSnapshot.val().key;

进入此:

key = childSnapshot.key;

key

The key (last part of the path) of the location of this DataSnapshot.

key 是一个属性,要访问它,您需要使用以下objectName.property

关于javascript - 显示 firebase 数据库中项目的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50947862/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com