gpt4 book ai didi

swift - 时间戳作为 "timestamp"保存到 Firestore 中是否正常?

转载 作者:搜寻专家 更新时间:2023-10-31 08:17:19 25 4
gpt4 key购买 nike

我保存服务器值时间戳如下:

let data : [String: Any] = ["userId": 9,
"name": "Elon Musk",
"timeCreated": ServerValue.timestamp()]

let doc = firestore.collection("orders").document()
doc.setData(data){ (error) in

}

在查看 Firestore 时,虽然我看到了这个:

enter image description here

这正常吗?难道不应该有一个包含自 Unix 纪元以来的毫秒数的 long 吗?

最佳答案

您正在使用服务器时间戳的实时数据库概念,即 ServerValue.timestamp .它本质上是一个包含您显示的值的字典:{'.sv': 'timestamp'}。这与 Firestore 不兼容。

相反,您想使用 Firestore 的服务器时间戳概念,即 FieldValue.serverTimestamp() .另请参阅 documentation here 中的最后一个样本。 .

关于swift - 时间戳作为 "timestamp"保存到 Firestore 中是否正常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48234148/

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