gpt4 book ai didi

Flutter 应用程序错误 - 类型 'Timestamp' 不是类型 'DateTime' 的子类型

转载 作者:IT老高 更新时间:2023-10-28 12:32:52 31 4
gpt4 key购买 nike

我正在获取数据 cloud firestore 并尝试使用以下代码在我的应用中显示。

new Text(timeago.format(document.data['tripDoc']['docCreatedOn'])),

我正在使用 timeago dart 包来格式化它。但是,在更新到最新的 cloud firestore 插件后,我收到了这个错误 -

Another exception was thrown: type 'Timestamp' is not a subtype of type 'DateTime'

无法理解如何将此“TimeStamp”对象解析为“DateTime”。因为 timeago 插件需要 DateTime 对象格式的数据。

最佳答案

.toDate() 为我工作。现在修改后的代码是-

new Text(timeago.format(document.data['tripDoc']['docCreatedOn'].toDate()))

希望对某人有所帮助。

关于Flutter 应用程序错误 - 类型 'Timestamp' 不是类型 'DateTime' 的子类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52996707/

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