如何更改flutter中的日期和时间格式?

问题描述 投票:0回答:1

你好吗 ?

我的后端只接受2019-03-24 11:00:00格式的日期和时间

我在我的应用程序日历小部件中使用获取日期,它以2019-04-24 12:00:00.000Z格式打印日期,我使用此代码来获取时间

TimeOfDay _time = new TimeOfDay.now();

  Future<Null> _selecTime(BuildContext context) async {
    final TimeOfDay picked = await showTimePicker(
      context: context,
      initialTime: _time,
    );
    if (picked != null && picked != _time) {
      print('${_time.toString()}');
      setState(() {
        _time = picked;
      });
    }
  }

我得到这个TimeOfDay(07:37)

那么我怎样才能获得像2019-04-24这样的日期格式以及11:00:00这样的时间,我会处理它

谢谢

dart flutter
1个回答
2
投票

你可以使用intl package

这是一个例子:

import 'package:intl/intl.dart';

main() {
  var now = new DateTime.now();
  var dateFormat = new DateFormat('yyyy-MM-dd HH:mm:ss');
  String formattedDate = dateFormat.format(now);
  print(formattedDate); // 2019-04-28 09:02:29
}
© www.soinside.com 2019 - 2024. All rights reserved.