gpt4 book ai didi

javascript - Google Firebase OrderByChild 不支持嵌套动态键

转载 作者:行者123 更新时间:2023-12-02 14:13:20 25 4
gpt4 key购买 nike

当动态键位于实际引用和数据之间时,按子项(名称)排序不起作用。

这是我的代码:

firebase.database().ref('/usersProfile').orderByChild('name').on('value', function(snapshot) {
callback(snapshot);
});
callback(snapshot) {
//console.log(snapshot);
let data = snapshot.val();
self.users = [];
for(let key in data) {
let value = data[key];
value.categId = key;
self.users.push(value);
}
}

这是我通过服务器收集的数据:

enter image description here

最佳答案

我认为你的正斜杠可能是问题所在。它可能看起来像这样:

firebase.database().ref().child("usersProfile").orderByChild("name").on("value", function(snapshot) {
callback(snapshot);
});

关于javascript - Google Firebase OrderByChild 不支持嵌套动态键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39274703/

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