gpt4 book ai didi

swift - 如何使用 PFQuery getObjectWithId?

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

使用 PFObjectPFQuery 我在调试这段代码时遇到了问题:

.......

if let someContents = object.valueForKey("contents") {
let query = PFQuery(className: "TheContentList")
do {let object = try query.getObjectWithId(someContents.objectId)
print(object)
} catch {
print(error)
}
}

通过上面的代码,我得到了带有 getObjectWithId 的行的编译器消息:

Cannot convert value of type 'String?!' to type 'String' in coercion

如果我改变:

query.getObjectWithId(someContents.objectId)

到:

query.getObjectWithId("xyz23AcSXh")

它编译并在调试器中我得到这个:

(lldb) p someContents.objectId
(String?!) $R4 = "xyz23AcSXh"

然后程序按预期打印了一个对象。

所以问题是:我应该如何编写 query.getObjectWithId 行才能使用 someContents 中的内容?

最佳答案

您的属性 objectId 是一个 Explicitly Unwrapped Optional,属于 Optional。如果您确定它包含 String,请使用以下方法解包:

let object = try query.getObjectWithId(someContents.objectId!!)

否则,如果您不确定:

if let objectId = someContents.objectId, id = objectId {
let object = try query.getObjectWithId(id)
}

关于swift - 如何使用 PFQuery getObjectWithId?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38448234/

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