我的数据库中有一个如下所示的队列:
server
queue
-RANDOM_ID_1234
active: "true"
text: "Some text"
-RANDOM_ID_5678
active: "false"
text: "Another text"
-RANDOM_ID_91011
active: "false"
text: "Text that does not matter"
我想查询并获取有效项目:
queueRef.orderByChild('active').equalTo('true').once('value', function(snap) {
if (snap.exists()) {
console.log(snap.val());
}
});
console.log
会返回如下内容:
{
-RANDOM_ID_1234: {
active: "true"
text: "Some text"
}
}
如何在不知道密钥的情况下获取文本?
我使用了lodash(请参阅下面的答案),但必须有更好的方法。
答案 0 :(得分:1)
对Firebase数据库执行查询时,可能会有多个结果。因此快照包含这些结果的列表。即使只有一个结果,快照也会包含一个结果的列表。
Firebase快照有一种内置的方式来迭代其子代:
queueRef.orderByChild('active').equalTo('true').once('value', function(snapshot) {
snapshot.forEach(function(child) {
console.log(child.key+": "+child.val());
}
});
答案 1 :(得分:0)
我使用lodash并得到这样的密钥:
/*
* I get the keys of the object as array
* and take the first one.
*/
const key = _.first(_.keys(snap.val()));
然后像这样从快照中获取文字:
/*
* then I create a path to the value I want
* using the key.
*/
const text= snap.child(`${key}/text`).val();