0
我有五種觀察方法,它們從Firebase獲取五個不同的INT值。所有的腳本實際上都在工作。如果我打印快照,控制檯會顯示五個不同的值。在五種觀察方法之外,我有一個連接到條形圖的數組。我想取第一個值並將其附加到數組的[0]中,依此類推。 這是我的代碼:Firebase觀察並獲取數組的值
let myArray = [1, 2, 3, 4, 5]
var exampleString = (label.text?.lowercased())!
ref2 = FIRDatabase.database().reference()
ref2.child("parole_chiave").child(exampleString).child(exampleString).child("valore1").observe(.value, with: { snapshot in
print(snapshot.value!)
})
ref2.child("parole_chiave").child(exampleString).child(exampleString).child("valore2").observe(.value, with: { snapshot in
print(snapshot.value!)
})
ref2.child("parole_chiave").child(exampleString).child(exampleString).child("valore3").observe(.value, with: { snapshot in
print(snapshot.value!)
})
ref2.child("parole_chiave").child(exampleString).child(exampleString).child("valore4").observe(.value, with: { snapshot in
print(snapshot.value!)
})
ref2.child("parole_chiave").child(exampleString).child(exampleString).child("valore5").observe(.value, with: { snapshot in
print(snapshot.value!)
})