我正在开发一款离子2 app。 我在firebase中有这种数据
我需要的是去查看考试节点并获得所有分数的总和。 在firebase文档中有这样的例子。
var query = firebase.database().ref("users").orderByKey();
query.once("value")
.then(function(snapshot) {
snapshot.forEach(function(childSnapshot) {
// key will be "ada" the first time and "alan" the second time
var key = childSnapshot.key;
// childData will be the actual contents of the child
var childData = childSnapshot.val();
});
});
但我不知道如何在我的情况下使用它。 有人可以帮帮我吗?
谢谢