gpt4 book ai didi

javascript - 如何在返回特定项目的 firebase url 时获取值

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

我正在使用以下命令查询我的 Firebase,但似乎无法访问每个 Firebase 引用下的 key value 对。我怎样才能获得这些值:

//PLEASE NOTE that snap.val().key is a key for another database (in this example -KjexampleZoe5-1exampleJp2UY) 
var desiredItem = this.goodsData.findGoodById(snap.val().key);
// => https://example-url.firebaseio.com/exampleList/-KjexampleZoe5-1exampleJp2UY

//find good by id
findGoodById(goodId): firebase.database.Reference {
return this.exampleList.child(goodId);
}

但是当我尝试使用 desiredItem.val().key2desiredItem.key2 获取值时,我得到 Property 'key2' does not exit on type “Reference”类型“Reference”上不存在属性“val”:

-KjexampleZoe5-1exampleJp2UY
|
|
- key: "value"
|
|
- key2: "value2"
|
|
- key3: "value3"

最佳答案

试试这个:

return firebase.database().ref('/myRef/').once('value').then(function(snapshot) {
var obj = snapshot.val(); // should be complete object;
var keyValue = snapshot.val().key //should be object property value
});

关于javascript - 如何在返回特定项目的 firebase url 时获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43875997/

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