我正在保存服务器值时间戳,如下所示:
let data : [String: Any] = ["userId": 9,"name": "Elon Musk","timeCreated": ServerValue.timestamp()] let doc = firestore.collection("orders").document() doc.setData(data){ (error) in }
在查看Firestore时,虽然我看到了这个:
这是正常的吗?难道不应该有一个长的包含自Unix Epoch以来的毫秒数?
解决方法
您正在使用服务器时间戳的实时数据库概念,即
ServerValue.timestamp.它本质上是一个包含您显示的值的字典:{‘.sv’:’timestamp’}.这与Firestore不兼容.
相反,您希望使用Firestore的服务器时间戳概念,即FieldValue.serverTimestamp().另请参阅documentation here中的最后一个示例.