gpt4 book ai didi

ios - 对 kFirebaseServerValueTimestamp 执行数学运算

转载 作者:行者123 更新时间:2023-11-29 10:21:40 25 4
gpt4 key购买 nike

在这篇文章的评论之一中:firebaseArray descending order? ,一位 Firebase 员工建议将时间戳乘以 -1,以便按日期降序排序。

这是我正在尝试实现的一个想法,但是,我很难做到这一点,因为 kFirebaseServerValueTimestamp 是一个 NSDictionary,键为 ". sv”和“timeStamp”的值。

当我尝试隔离该值时,我所能得到的只是一个显示“timeStamp”的 NSString

有没有办法对 kFirebaseServerValueTimestamp 执行数学运算?

最佳答案

kFirebaseServerValueTimestamp 是一个真正用作 firebase 在写入数据时填充的占位符的属性。

来自文档:

Server Values - Placeholder values you may write into a Firebase database as a value or priority that will automatically be populated before writing to the Firebase database.

kFirebaseServerValueTimestamp - The number of milliseconds since the Unix epoch

例如,如果您想将时间戳基于 Firebase 服务器时间,那么

Firebase *timeStampsRef = [self.myRootRef childByAutoId];

[timeStampsRef setValue:kFirebaseServerValueTimestamp];

Firebase *timeStampsRef2 = [self.myRootRef childByAutoId];

[timeStampsRef2 setValue:kFirebaseServerValueTimestamp];

会产生以下结果

-K861VyNBisoAL14dHsk: 1452890788194
-K861VyNBisoAL14dHsl: 1452890788195

如果您想对 Firebase 数据进行排序,您应该包含一个时间戳属性作为您要排序的节点的子节点。

pizza_time
node_id_0
timeStamp: 20160109153000
location: "Pizza House"
node_id_1
timeStamp: 20160110153000
location: "Pizza Place"
node_id_2
timeStamp: 20160114153000
location: "Pizza Busters"

然后您可以按日期排序、从一个日期到另一个日期查询节点或各种其他数据技巧。

关于ios - 对 kFirebaseServerValueTimestamp 执行数学运算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34816024/

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