gpt4 book ai didi

ios - 使用 PFQuery 测试指针相等性,语法错误

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

这里有一些 Parse-Server 相关的 swift 代码不起作用,可能只是因为一些明显的语法错误。

如果有人能指出这个问题,我将非常高兴和感激。

func getSentenceTranslations(_ sentences:[PFObject]) {
let query = PFQuery(className: "TranslationsList")
query.whereKey("sentence", containedIn: sentences)
query.addAscendingOrder("order")
query.findObjectsInBackground {
[weak self] (objects: [PFObject]?, error: Error?) in
if error != nil {
print("Error in \(#function)\n" + (error?.localizedDescription)!)
return
}

// The line below prints the expected number (> 0).
print("\(objects?.count ?? 99) translations found.")

for sentence in sentences {
for translation in objects! {
// The following does not work!!
if (translation.value(forKey: "sentence") as! PFObject) == sentence {
print("FTF: \(sentence.value(forKey: "sentence")!)") // MISSING!!
}
}
}
}
}

但事实是,如果我在适当的时候停止调试器,我可以看到注释行上应该有一个命中(丢失!!)。这是调试器显示的内容:

(lldb) p sentence.debugDescription
(String) $R31 = "<SentencesList: 0x1073j7450, objectId: krxX9WsZuxK, localId: (null)> {\n order = 3;\n owner = Ht8AbcR543;\n sentence = \"Hello big world of things.\";\n}"
(lldb) p translation.debugDescription
(String) $R32 = "<TranslationsList: 0x10739f0e0, objectId: FoBdjoPF1n, localId: (null)> {\n order = 0;\n owner = Ht8AbcR543;\n sentence = \"<SentencesList: 0x1073aa8c0, objectId: krxX9WsZuxK, localId: (null)>\";\n translation = \"Die Welt von immer!\";\n}"
(lldb)

我们可以看到在句子(objectId)和翻译(句子字段)上都找到了值 krxX9WsZuxK,所以我希望有这样一行:

FTF: .......

要打印,但不会发生这种情况。所以我怀疑这行有错误:

if (translation.value(forKey: "sentence") as! PFObject) == sentence {

我尝试了各种其他变体,但都失败了。

最佳答案

您好,您应该使用以下方法将“句子”包含在查询响应中:

query.includeKey("句子")
query.findObjectsInBackground { ...

这将有助于查询将句子作为 PFObject 包含到结果中。这具有类似于连接的效果。您可以使用点符号来指定包含对象中的哪些字段也被提取。

关于ios - 使用 PFQuery 测试指针相等性,语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49787225/

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