在Firestore中,我有一个带有数组类型字段的文档,我想从flutter应用程序向其中添加日期时间值。有人可以建议一种方法吗?
答案 0 :(得分:0)
存储:
使用DateTime.now().millisecondsSinceEpoch
这将为您提供一个int
值,您可以将其保存在Firestore中。
检索:
您可以使用DateTime
从存储的值中轻松获取DateTime.fromMillisecondsSinceEpoch(valueSavedInFirestore)