本文介绍了如何在 Dart 中将日期/时间字符串转换为 DateTime 对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

说我有一个字符串

"1974-03-20 00:00:00.000"

它是使用 DateTime.now() 创建的,如何将字符串转换回 DateTime 对象?

It is created using DateTime.now(),how do I convert the string back to a DateTime object?

推荐答案

DateTime 有一个 parse 方法

var parsedDate = DateTime.parse('1974-03-20 00:00:00.000');

https://api.dartlang.org/stable/dart-core/DateTime/parse.html

这篇关于如何在 Dart 中将日期/时间字符串转换为 DateTime 对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 06:14