ActionScript 3 iso 8601到as3 date对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 iso 8601到as3 date对象相关的知识,希望对你有一定的参考价值。

//trace(new Date("2010/05/03T14:14Z")); ----> this will error 'invalid date'

var isoDate = "2010-05-03T14:14Z";

//this will remove the T and Z
var date = isoDate.replace(/[A-Z]/gi," ");

//this will replace the hypens with forward slashes
date = date.replace(/\-/gi, "/");

//this casts the string to date and creates the correct date object
trace(new Date(date));

以上是关于ActionScript 3 iso 8601到as3 date对象的主要内容,如果未能解决你的问题,请参考以下文章

iOS-时间格式ISO 8601

将时区偏移量(ISO 8601 格式)添加到原始日期时间

识别 ISO 8601 中的时区

Google 表格单元格中的 ISO-8601 字符串到日期

将 Unix 纪元时间转换为扩展的 ISO8601

如何将 iso 8601 日期发送到后端?