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

时间:2018-04-12 02:52:17

标签: ios swift parse-server pfquery

这里有一些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!!
                }
            }
        }
    }
}

但事实是,如果我在正确的时刻停止调试器,我可以看到该行应该有一个命中(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) 

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

FTF: .......

要打印,这不会发生。所以我怀疑这行中有一个错误:

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

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

2 个答案:

答案 0 :(得分:1)

您认为应该包含&#34;句子&#34;使用以下命令查询响应:

query.includeKey("sentence") query.findObjectsInBackground { ...

它将帮助查询将句子作为PFObject包含在结果中。这具有类似于连接的效果。您可以使用点表示法来指定包含的对象中的哪些字段也可以获取。

答案 1 :(得分:0)

在搜索并尝试了许多事情之后,以下是有效的:

我需要更换这一行:

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

由此:

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

这很有道理,但我希望能做一些简短的写作。 无论如何,我希望它在某些方面对其他人也有用。