显示具有特定子值的Firebase密钥

时间:2017-08-14 06:08:27

标签: ios swift firebase

我希望能够从我的数据库中检查其子项具有与特定值匹配的值的键。例如,我的钥匙是:
- A
- B
- C;
每个密钥都有一个名为Verified的子项,其值为true或false。目前,我可以使用下面的代码显示所有键。 我不明白的是,我如何才能显示相同的密钥,只能显示其孩子已验证 ==" True"

if let snapDict = snapshot.value as? [String:AnyObject]
     {
           for each in snapDict
           {
               let  names = each.key
               let initialisation = ListOfNames(names: names)
               self.names.insert(initialisation, at: 0)
           }
      }

1 个答案:

答案 0 :(得分:0)