Firebase Swift:childKey的queryEqualToValue不起作用

时间:2016-06-01 19:21:56

标签: ios swift firebase firebase-realtime-database

有没有人有运气使用该功能:

.queryEqualToValue(value: AnyObject?, childKey: String?)

两件事:

1)childKey似乎不允许深层路径,只是直接孩子

2)我根本无法工作!鉴于我的结构:

"post": {
  "groupName": "hello world"
}

如果我做的很简单:

postRef.queryEqualToValue("hello world", childKey: "groupName").observeSingleEvent( ... )

它根本不会返回任何帖子。相反,我必须做出迂回的方式:

postRef.queryOrderedByChild("groupName").queryEqualToValue("hello world").observeSingleEvent( ... )

让它发挥作用!

我是否错误地使用了上述功能?

2 个答案:

答案 0 :(得分:6)

Xcode 7.2.1
斯威夫特2.1.1
iOS 9.2
OSX 10.10.5

  

2)我根本无法工作!鉴于我的结构:

"post": {
  "groupName": "hello world"
}
     

如果我做的很简单:

postRef.queryEqualToValue("hello world", childKey: "groupName")
postRef.queryEqualToValue("hello world", childKey: "groupName").observeSingleEvent( ... )

我可以使用以下代码成功获取查询:

import UIKit
import Firebase

class ViewController: UIViewController {

    var dbRef: FIRDatabaseReference!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        dbRef = FIRDatabase.database().reference()
        dbRef.child("post").child("groupName").setValue("hello world")

        let postRef = dbRef.child("post")
        print(postRef)

        let query = postRef.queryEqualToValue("hello world", childKey: "groupName")
        print(query)


    --output:--
    (/post {
        en = groupName;
        ep = "hello world";
        sn = groupName;
        sp = "hello world";
    })
  

1)childKey似乎不允许深度路径,只是直接路径   儿童

我没有看到。如果我将我的代码更改为:

import UIKit
import Firebase

class ViewController: UIViewController {

    var dbRef: FIRDatabaseReference!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        dbRef = FIRDatabase.database().reference()
        dbRef.child("post").child("groupName").child("userId").setValue("hello world")

        let postRef = dbRef.child("post")
        print(postRef)

        let query = postRef.queryEqualToValue("hello world", childKey: "userId")
        print(query)

我得到以下输出:

(/post {
    en = userId;
    ep = "hello world";
    sn = userId;
    sp = "hello world";
})

然而,我无法让观察者工作 - 他们肯定不会像医生说的那样工作。

我在运行应用程序之前删除了Firebase上的所有数据。

编辑:好的,我想我知道观察员发生了什么。根据{{​​3}}部分:

  

通过将异步侦听器附加到a来检索Firebase数据    FIRDatabase引用 FIRDatabaseReference。首次触发侦听器初始化   数据的状态,并在数据发生变化的任何时候再次。

当我尝试观察查询时,回调中的快照中没有任何数据。另一方面,当我观察FirDatabaseReference时,观察者的工作(有点)就像我期望的那样。

例如,如果我观察到这样的FIRDatabaseReference:

import UIKit
import Firebase

class ViewController: UIViewController {

    var dbRef: FIRDatabaseReference!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.

        dbRef = FIRDatabase.database().reference()
        dbRef.child("post").child("groupName").child("userId").setValue("hello world")

        let postRef = dbRef.child("post")
        postRef.observeEventType(.Value, withBlock: { (snapshot) -> Void in
            print(snapshot)
        })

        sleep(1) //Allow the observer (in another thread) to execute before the following line:
        dbRef.child("post").child("groupName").child("userId").setValue("goodbye Mars")


    }

然后回调中的快照中包含数据,我得到了这个输出:

Snap (post) {
    groupName =     {
        userId = "hello world";
    };
}
Snap (post) {
    groupName =     {
        userId = "goodbye Mars";
    };
}

但如果我观察FIRDatabaseQuery:

let postRef = dbRef.child("post")
let query = postRef.queryEqualToValue("hello world", childKey: "userID")

query.observeEventType(.Value, withBlock: { (snapshot) -> Void in
    print(snapshot)
})

然后输出是:

Snap (post) <null>

答案 1 :(得分:6)

以下内容写在Firebase文档中:

  

queryEqualToValue 返回等于指定键,值或优先级的项目,具体取决于所选的顺序方法。

Retrieve Data on iOS

重要的部分是: &#34;取决于所选择的订购方式。&#34;

因此,请确保将 queryEqualToValue -Method与 orderBy -Method结合使用。

例如:

    let groupState = "open"

    ref.child("groups").queryOrdered(byChild:"state").queryEqual(toValue:groupState).observe(enventType: .value, with: { snapshot in
        // Returns all groups with state "open"
        for group in snapshot.children {
            print(group)
        }
    })

PS:新的Firebase iOS指南中未提及 childKey 的变体。