“ yyyy-mm-ddT00.00.00.000 Z”的“ .000 Z”是什么意思?

我收到了一个应用程序的回复,日期和时间格式如下:

Yyyy-mm-ddT00.00.000Z

我需要报告的日期和时间。000Z 是什么意思?我需要做什么才能使用 javascript 根据区域得到时间?

82026 次浏览

.000 is the fraction of a second and Z indicates UTC timezone.

How you convert to your local time will depend on which programming language you prefer, but for example Perl has standard modules for parsing and formatting times.