gpt4 book ai didi

ios - 此类与键 XXX 的键值编码不兼容 - 类是否正确连接?

转载 作者:行者123 更新时间:2023-11-28 12:28:34 25 4
gpt4 key购买 nike

首先,这不是 What does this mean? "'NSUnknownKeyException', reason: … this class is not key value coding-compliant for the key X" 的副本

我已经查看了那个问题和其他几个问题,并确保我的类(class)通过身份检查器和连接检查器进行连接。我的类(class)也通过助理编辑器中的自动模式显示。

    if let currentUser = FIRAuth.auth()?.currentUser {

ref = FIRDatabase.database().reference()
ref.child("Teams").child(self.teamName.text!).setValue(["Name" : self.teamName.text!])
ref.child("Teams").child(self.teamName.text!).setValue(["Number" : self.teamNumber.text!])
ref.child("Teams").child(self.teamName.text!).setValue(["Password" : self.teamPassword.text!])
ref.child("Teams").child(self.teamName.text!).setValue(["memberCount" : 1])
print("1")

let userName = "member" + String(1)
let currentUserEmail = currentUser.uid
ref.child("Teams").child(self.teamName.text!).child("memberList").setValue([userName : currentUserEmail])
print("2")

if let userteamcount = self.ref.child("Users").child(currentUser.uid).value(forKey: "teamCount") as? Int {
let currentTeam = "team" + String(userteamcount + 1)
print("4")
self.ref.child("Users").child(currentUser.uid).setValue(["teamCount" : (userteamcount + 1)])
print("5")
self.ref.child("Users").child(currentUser.uid).child("joinedTeams").setValue([currentTeam : self.teamNumber.text!])
print("6")
}
}

一个重要的注意事项是它在发送错误之前打印出 1 和 2。

此外,这是我得到的特定错误:

1
2
Terminating app due to uncaught exception 'NSUnknownKeyException', reason:
'[<FIRDatabaseReference 0x618000054160> valueForUndefinedKey:]:
this class is not key value coding-compliant for the key teamCount.'

非常感谢。

最佳答案

self.ref.child("Users").child(currentUser.uid).value(forKey: "teamCount") as? Int

您不能像那样从数据库中获取值。您需要观察引用以获取值。但是看起来您正在尝试增加一个值,因此无论如何您都应该使用事务来执行此操作。因为如果不这样做,当两个用户同时尝试增加它时,一个人的更改很可能会覆盖另一个人(就我个人而言,我发现它也更具可读性)。方法如下。

self.ref.child("Users").child(currentUser.uid).child("teamCount").runTransactionBlock({ (currentData: FIRMutableData) -> FIRTransactionResult in
var teamCount = currentData.value as? Int
if teamCount != nil {
currentData.value = teamCount + 1
}
return FIRTransactionResult.success(withValue: currentData)
}) { (error, committed, snapshot) in
if error == nil {
// Update joinedTeams here
let value = snapshot.value as? Int
let currentTeam = "team\(value)"
self.ref.child("Users").child(currentUser.uid).child("joinedTeams").child(currentTeam).setValue(self.teamNumber.text!)
}
}

下面是您通常如何从您的数据库中加载 teamCount,而无需事务。

self.ref.child("Users").child(currentUser.uid).child("teamCount").observeSingleEvent(.value, with: { dataSnapshot in
let teamCount = dataSnapshot.value as? Int
})

我还没有测试代码,但我认为它应该可以工作。

链接:

Firebase Transactions

关于ios - 此类与键 XXX 的键值编码不兼容 - 类是否正确连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42703886/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com