当前,我的数组的结构如下:
现在我已经能够将一个数组写入数据库,但是现在我要做的是检索该数组,其中包含特定员工的职位编号。
到目前为止,这是我无法执行的尝试:
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);
});
});