使用未指定索引的Swift Firebase

时间:2017-12-12 09:22:24

标签: swift firebase firebase-realtime-database

所以,我有一个聊天应用程序,我的数据结构如此

chats : {
    chat12345 : {
        members : {
            user123 : true,
            user456 : true,
        }
    }
}

users : {
    user123 : {
        chats : {
            chat12345 : true
        }
    }
}

因此,当我想获取用户聊天列表时,我只需使用:

let ref = dbref.child("users").child("user123").child("chats")
ref.observe(.childAdded, with: { (snapshot) -> Void in

    let chatRef = dbref.child("chats").child(snapshot.key)

        chatRef.observeSingleEvent(of: .value, with: { (chatSnapshot) in

            //I now have the chat object

        })
})

您在上面看到,我能够查询每个聊天ID,以便从Firebase成功获取聊天对象。

但我还需要观察我所参与的聊天的变化,例如聊天标题,图片或其他属性是否会发生变化。

所以,当我尝试以下内容时:

let queryRef = chatRef.queryOrdered(byChild: "members/user123").queryEqual(toValue: true)

queryRef.observe(.childChanged, with: { (snapshot) -> Void in

})

这在技术上有效,但控制台输出以下内容:

Using an unspecified index. Your data will be downloaded and filtered on the client. Consider adding ".indexOn": "members/user123" at /chats to your security rules for better performance.

如何修改安全规则或我的查询以观察对我所属的聊天内容的更改?

以下是我的安全规则:

"chats": {

    ".read": "auth != null",
    ".write": "auth != null",

    "$chatId" : {
        "members": {
          ".indexOn": ".value"
        }
    }

 },

1 个答案:

答案 0 :(得分:0)

您不应该queryOrderedBy(/ key / $ variable)您需要构建数据的结构,例如变量保留在chatRef上。然后,您可以使用静态索引。