0
質問/ 06_26_2017/question1内のすべての真偽値を取得したい。私が見つけた唯一の方法は、値を取得するためにuidを使うことです。私は明示的にすべてのuidを述べることができないので、うまくいきません。質問/ 06_26_2017/question1のすべての値を[false、true]という形式で取得するにはどうすればよいですか?firebase/swift:値のデータを取得する
私はUIDで真と偽の値を格納します。
@IBAction func yes(_ sender: AnyObject) {
let ref = Database.database().reference().child("questions").child(finishedDate).child("question1").child(uid!)
answer = true
ref.setValue(answer)
performSegue(withIdentifier: "1to2", sender: nil)
}
@IBAction func no(_ sender: AnyObject) {
let ref = Database.database().reference().child("questions").child(finishedDate).child("question1").child(uid!)
answer = false
ref.setValue(answer)
performSegue(withIdentifier: "1to2", sender: nil)
}
さらに詳しい情報が必要な場合や、私が何か助けが必要であるかについて明確でない場合は教えてください。御時間ありがとうございます!
を役に立てば幸い私の答えは、支援してきましたか? –
@VladPulichevはい、ありがとうございます! – Hunter
聞いてうれしい –