我有一个日期作为字符串,格式为11/6/2019 12:18:35 PM。我需要将此日期与今天的日期进行比较,并找出差异。 我放了dateformatter,然后尝试将String日期转换为DateTime格式,但显示异常
Unhandled Exception: FormatException: Invalid date format
这是我的代码
Date1 = convertDateFromString(formatString);
final date2 = DateTime.now();
final difference = date2.difference(Date1).inDays;
DateTime convertDateFromString(String strDate){
DateTime todayDate = DateTime.parse(strDate);
print(formatDate(todayDate, [yyyy, '/', mm, '/', dd, ' ', hh, ':', nn, ':', ss, ' ', am]));
}