检索存储在childByAutoId()参考(Swift)中的特定Firebase数据

时间:2016-05-25 01:38:39

标签: ios json database swift firebase

这个问题可能难以解释。

以下是firebase生成的JSON:

{
  "users" : {
    "2W1Sse5kiZarFQ5k8UKjP87D8Rk2" : {
      "PlainNote" : {
        "-KIZYVAGZQczTSI1L4Qi" : {
          "note" : "Finally works",
          "title" : "Whats up"
        },
        "-KIZY_M3FMW0m8mgx4Am" : {
          "note" : "Aye",
          "title" : "Db"
        },
        "-KIZpAEsa7-wSCOJfHvv" : {
          "note" : "This wont work for some reason",
          "title" : "Helloo"
        }
      },
      "email" : "jacobsiegel@gmail.com"
    },
    "XTjy66z8xEWtEiLx6E0mOo1JEaz2" : {
      "email" : "123@gmail.com"
    },
    "rfzV1saUf3RtPu7YcqJ0VyAOgmd2" : {
      "PlainNote" : {
        "-KIZpfbfHcePU3E8HpeU" : {
          "note" : "Now i only see my own data",
          "title" : "Hello"
        }
      },
      "email" : "whatsup@gmail.com"
    }
  }
}

以下是我在swift中生成每个普通音符的方法:

let title = plainNoteTitleTextField.text!
    let note = bodyOfNoteTextView.text!
    let usersId = FIRAuth.auth()?.currentUser?.uid

        if title != "" || note != "" {
            let data = [
                "title": title,
                "note": note
            ]

self.usersRef.child(usersId!).child("PlainNote").childByAutoId().setValue(data)

在此之后,我使用firebase实时数据库实时填充tableview:

override func viewDidAppear(animated: Bool) {
    var localNotes = [String]()
    var localBody = [String]()
    let usersId = FIRAuth.auth()?.currentUser?.uid
    usersRef.child(usersId!).child("PlainNote").observeEventType(.ChildAdded, withBlock: { snapshot in
        let title = snapshot.value?.objectForKey("title") as! String
        var x = snapshot.value?.objectForKey("note") as! String

        if x.characters.count > 20 {
            x = x[0...20] + "..."
        } else {
            x = x + "..."
        }

        localNotes.insert(title, atIndex: 0)
        localBody.insert(x, atIndex: 0)
        self.notes = localNotes
        self.noteBody = localBody
        self.tableView.reloadData()
    })
}

我的问题:我正在尝试访问PlainNote引用,以便在点击tableview单元格时,我可以从firebase中提取特定的音符标题和正文。我不确定如果不每次查看我的数据库都会这样做,因为firebase每次创建一个新注释时都会创建一个唯一的引用。

(P.S。:如果你认为你理解,但需要更多细节,请不要犹豫!) 谢谢。

1 个答案:

答案 0 :(得分:1)

不确定你是否还有答案,但这是以防万一(我有同样的问题)。我理解它的方式是你想要获得每次生成的唯一键,以便您可以访问存储在单个键下的数据。您可以生成一个字符串数组,然后使用它来在单个索引处提取键的值,然后可以将其反馈到数据检索代码中。这样做是这样的:

usersRef.child(usersId!).child("PlainNote").observeEventType(.ChildAdded, withBlock: { snapshot in

var idKeys = [String]()  //this will hold your keys

for snap in snapshot.children.allObjects {

let id = snap as! FIRDataSnapshot

idKeys.append(String(id.key))

}}

现在你有了你的钥匙,你可以选择一个使用var selectedKey = idKeys [x]。

希望这有帮助