如何从Firebase数据库(Web)检索阵列

时间:2019-05-13 17:26:45

标签: javascript firebase firebase-realtime-database

当前,我的数组的结构如下:

Firebase DB Structure

现在我已经能够将一个数组写入数据库,但是现在我要做的是检索该数组,其中包含特定员工的职位编号。

到目前为止,这是我无法执行的尝试:

    var keys = [];
    // read the array then update
    const dbRef = firebase.database().ref().child(job.title).child(job.author).child('job_numbers');
    // Now we have the reference to the jobs array of the individual
    dbRef.once('value', function(snap){
      snap.forEach(function(item){
        var itemVal = item.val();
        keys.push(itemVal);
      });
    });

0 个答案:

没有答案