作者:手机用户2502875017 | 来源:互联网 | 2023-09-14 20:20
此处是Firebase云Firestore上的新手。
我已经在云Firestore上创建了一个名为“ push_notif”的集合,但是无法从我的iOS应用中添加值。
当我调用该函数时,它什么也没做。
let ndb = Firestore.firestore()
self.docReference = ndb.collection("push_notif").addDocument(data: [
"push_id": pushID,"push_type": "notification","timestamp": EndTimeStamp,],completion: { err in
if let err = err {
print("Error adding document for loser notification: \(err)")
} else {
print("Notification Document added with ID: \(String(describing: self.docReference?.documentID))")
}
})
谢谢您的回答。