0
@IBAction func addPost(_ sender: Any) {
ref?.child("Posts").childByAutoId().setValue(titleText.text)
}
如果我想添加小節而不是標題,該怎麼辦。像日期,作者等如何使用Swift在Firebase數據庫中設置多個值?
@IBAction func addPost(_ sender: Any) {
ref?.child("Posts").childByAutoId().setValue(titleText.text)
}
如果我想添加小節而不是標題,該怎麼辦。像日期,作者等如何使用Swift在Firebase數據庫中設置多個值?
創建普通Swift dictionary,設置所需的屬性,然後使用與上述相同的語法調用setValue
。
例如:
let ref: FIRDatabaseReference = ...
let post = [
"title": "Incompleteness Theorem",
"author": "Kurt Gödel",
"date": "1931"
]
ref.child("Posts").childByAutoId().setValue(post)