在颤动中将字符串转换为日期时间
Posted
技术标签:
【中文标题】在颤动中将字符串转换为日期时间【英文标题】:Convert String to DateTime in flutter 【发布时间】:2020-03-11 04:54:29 【问题描述】:我有这个代码
if (obj.due_date != null)
print('The date is '+obj.due_date);
print('now change to ' +
DateUtil().formattedDate(DateTime.parse(obj.due_date)));
DateUtil
import 'package:intl/intl.dart';
class DateUtil
static const DATE_FORMAT = 'dd/MM/yyyy';
String formattedDate(DateTime dateTime)
print('dateTime ($dateTime)');
return DateFormat(DATE_FORMAT).format(dateTime);
我的输出变成了这个
I/flutter (5209):日期为 2019-11-20T00:00:00.000+08:00
I/flutter (5209): dateTime (2019-11-19 16:00:00.000Z)
I/flutter (5209):现在改为 19/11/2019
为什么会从 20 变成 19?
【问题讨论】:
【参考方案1】:是因为你持有的价值
obj.due_date
根据日志,当前值为
2019-11-20T00:00:00.000+08:00
当我使用下面的代码时
var tempDate = '2019-11-20T00:00:00.000+00:00';
print('The date is '+tempDate);
print('now change to ' +DateUtil().formattedDate(DateTime.parse(tempDate)));
日志如下:
I/flutter (18268): The date is 2019-11-20T00:00:00.000+00:00
I/flutter (18268): dateTime (2019-11-20 00:00:00.000Z)
I/flutter (18268): now change to 20/11/2019
这些代码之间的唯一变化是我们传递的值。
2019-11-20T00:00:00.000+00:00
这纯粹是时区问题。
试试下面的代码
var tempDate = DateTime.now().toLocal().toString();
日志展示
I/flutter (18268): 2019-11-15 16:06:54.786814
I/flutter (18268): The date is 2019-11-15 16:06:54.787186
I/flutter (18268): dateTime (2019-11-15 16:06:54.787186)
I/flutter (18268): now change to 15/11/2019
同样,当你使用下面的代码时
var tempDate = DateTime.now().toUtc().toString();
日志如下:
I/flutter (18268): 2019-11-15 16:07:35.078897
I/flutter (18268): The date is 2019-11-15 05:07:35.079251Z
I/flutter (18268): dateTime (2019-11-15 05:07:35.079251Z)
I/flutter (18268): now change to 15/11/2019
因此最终的答案是,更改以下行
DateUtil().formattedDate(DateTime.parse(tempDate)));
到
DateUtil().formattedDate(DateTime.parse(tempDate).toLocal())
【讨论】:
以上是关于在颤动中将字符串转换为日期时间的主要内容,如果未能解决你的问题,请参考以下文章
如何在颤动中将 List<String> 转换为 String [重复]