flutter DART:类型“Timestamp”不是类型“String”的子类型

a9wyjsp7  于 2023-03-24  发布在  Flutter
关注(0)|答案(1)|浏览(105)

我正在尝试获取Firestore TimeStamp类型字段的日期。enter image description here
这是firestore中的字段:enter image description here
我试过一些石膏,但任何东西都有效。
这是错误:enter image description here
如果我删除.toString(),我得到:enter image description here
我只想要日期的当天:enter image description here

w46czmvw

w46czmvw1#

将你的代码改为:

Text(DateFormat('dd').format(
DateTime.parse(snapshot.data!.docs[index]['dia'].toDate()),).toString())

相关问题