gpt4 book ai didi

swift - 数据库值计数

转载 作者:行者123 更新时间:2023-11-30 11:27:55 26 4
gpt4 key购买 nike

我的数据库结构userDatabase/userID/Customers 我有两个客户。例如路径:

usersDatabase
g8voYf1yoChnpmhkoPgtmO4FQT62 - (uid)
Customers
Tom Smith (customer with custom ID)
-LDFZw1tca8KOrnqyyWH - (auto id of customer child)
Status of Service: "Open service"
Ben Thomas (customer with custom ID)
-LDFZw1tca8KOjgoenBN - (auto id of customer child)
Status of Service: "Open service"

是否可以从我的数据库中的所有客户中获取“开放服务”值的计数?现在我只知道,如何为每个客户打印这个值......

我从数据库获取值(value)的代码:

let userID = Auth.auth().currentUser?.uid
let usersDatabaseRef = Database.database().reference().child("usersDatabase").child(userID!).child("Customers")
usersDatabaseRef.observe(.value, with: { snapshot in
var totalCustomerCount = 0
for child in snapshot.children {
let childSnap = child as! DataSnapshot
let childrenRef = childSnap
totalCustomerCount += Int(childrenRef.childrenCount)
print("user \(childSnap.key) has \(childrenRef.childrenCount) customers")

let userCustomerSnap = childSnap
for customer in userCustomerSnap.children.allObjects as! [DataSnapshot] {
let customerSnap = customer
let dict = customerSnap.value as! [String: Any]

let stat = dict["Status of Service"] as! String

let myStatistic = PrintModel(status: stat)
self.statistic.append(myStatistic)
print("Statistic: \(String(describing: myStatistic.status))")
}
}
print("... and there are \(totalCustomerCount) total customers")
})

例如我的日志现在显示:

  1. 用户 Tom Smith 有 1 个客户
  2. 统计:可选(“开放服务”)
  3. 用户 Ben Thomas 有 1 个客户
  4. 统计:可选(“开放服务”)

但我想展示:

  1. 统计数据:2

最佳答案

构建 Firebase 数据时,结构通常基于您想要从中获取的内容。在这种情况下,您想要的数据在发布的结构中太深而无用。因此,改变结构将使这一切变得轻而易举。

将数据分离到它们自己的节点中,对数据进行非规范化。像这样

users
uid_0
//some info about this user
open_service_calls
auto_id_0: true
auto_id_1: true
uid_1
//info about this user

customers
customer_id_0
customer_name: "Tom Smith"
open_service_calls
auto_id_0: true
customer_id_1
customer_name: "Ben Thomas"
open_service_calls
auto_id_1: true

service_calls
auto_id_0
customer_id: customer_id_0
user_id: "uid_0"
status_of_service: "Open service"
auto_id_1
customer_id: customer_id_1
user_id: "uid_0"
status_of_service: "Open service"

这允许客户、用户进行查询,并且为了解决这个问题,可以轻松统计数据库中所有用户和客户的所有开放服务;查询 service_calls/status_of_service 中的“开放服务”

它还允许您快速访问对任何用户、任何客户打开或关闭的所有服务调用,甚至只是为用户的客户打开的服务调用。

额外的节点将提供进一步的查询灵 active - 将用户 ID 存储在客户节点中将允许 super 简单的查询来检索特定用户的所有客户,即使他们没有服务调用;这完全取决于您想从 Firebase 中获得什么。

--- 旧答案如下 ---

根据我对原始问题的评论,此答案涉及使用深度查询来查询客户的子节点的子节点。这里的想法是,在用户节点内,有一个 Customers 节点,其中每个子键是客户名称,该节点的值是一个键:字符串“serviceID”的值对,然后是可能包含其他子节点的值关于服务。

深度查询的重要部分是保持您正在查询的子键的命名一致 - 在本例中,我们使用键“serviceID”,以便查询可以正确解析路径,然后解析可以查询:status_of_service,可能是时间戳,甚至是服务位置

更改之前的初始结构是

Customers
Tom Cruise
serviceID
status_of_service: "Open service"
//timestamp of service?
//location of service?
//other data about service we may need to query?
Ben Smith
serviceID:
status_of_service: "Open service"

请注意,对于此答案 self.ref = my firebase,因此 Customers 是该路径的直接子级。

let ref = self.ref.child("Customers")
let query = ref.queryOrdered(byChild: "serviceID/status_of_service")
.queryEqual(toValue: "Open service")
query.observeSingleEvent(of: .value, with: { (snapshot) in
for child in snapshot.children {
let snap = child as! DataSnapshot
print(snap)
}
})

输出是两个客户节点

   tom_smith
serviceID
status_of_service: "Open service"
another_customer
serviceID
status_of_service: "Open service"

关于swift - 数据库值计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50553655/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com