set value of user rating to Firebase Database
问题 I try to send the voting from users to firebase and save them under the specific user. class User: NSObject { var id: String? init(dictionary: [String: AnyObject]) { self.id = dictionary["id"] as? String } var ref: DatabaseReference! var numberOfGood = 0 init(id: String? = nil) { self.id = id ref = Database.database().reference().child("users").childByAutoId() } init(snapshot: DataSnapshot){ ref = snapshot.ref if let value = snapshot.value as? [String : Any] { numberOfGood = value[