用JavaScript解析ISO 8601日期


71

需要有关将具有以下结构的ISO 8601日期转换为javascript的帮助/提示。

CCYY-MM-DDThh:mm:ssTZD

我想这样格式化日期:

January 28, 2011 - 7:30PM EST

我想保持此解决方案尽可能干净和最小。


1
我知道这是一篇旧文章,但是该库可以满足
Steve

Answers:


33

datejs可以解析以下内容,您可能想尝试一下。

Date.parse('1997-07-16T19:20:15')           // ISO 8601 Formats
Date.parse('1997-07-16T19:20:30+01:00')     // ISO 8601 with Timezone offset

编辑:正则表达式版本

x = "2011-01-28T19:30:00EST"

MM = ["January", "February","March","April","May","June","July","August","September","October","November", "December"]

xx = x.replace(
    /(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):\d{2}(\w{3})/,
    function($0,$1,$2,$3,$4,$5,$6){
        return MM[$2-1]+" "+$3+", "+$1+" - "+$4%12+":"+$5+(+$4>12?"PM":"AM")+" "+$6
    }
)

结果

January 28, 2011 - 7:30PM EST

Edit2:我将时区更改为EST,现在我关注了

x = "2011-01-28T19:30:00-05:00"

MM = {Jan:"January", Feb:"February", Mar:"March", Apr:"April", May:"May", Jun:"June", Jul:"July", Aug:"August", Sep:"September", Oct:"October", Nov:"November", Dec:"December"}

xx = String(new Date(x)).replace(
    /\w{3} (\w{3}) (\d{2}) (\d{4}) (\d{2}):(\d{2}):[^(]+\(([A-Z]{3})\)/,
    function($0,$1,$2,$3,$4,$5,$6){
        return MM[$1]+" "+$2+", "+$3+" - "+$4%12+":"+$5+(+$4>12?"PM":"AM")+" "+$6 
    }
)

返回

January 28, 2011 - 7:30PM EST

基本上

String(new Date(x))

返回

Fri Jan 28 2011 19:30:00 GMT-0500 (EST)

正则表达式部分只是将上述字符串转换为您所需的格式。

January 28, 2011 - 7:30PM EST

我正在制作一个小部件,希望可以使用一个可以放入JS文件中的简单函数。我认为datajs对此可能会大材小用?感谢您的建议和快速回复!
Slythic'1

@Slythic,然后我将编写正则表达式,请稍等。

@Slythic,已更新,让我知道是否有任何错误。

嗯...无法正常工作。我应该已经添加了!以下是返回日期的示例:“ 2011-01-28T19:30:00-05:00”
Slythic'1

嗯,好,时区不是字符串,请让我弄清楚如何解析。

91

Date对象处理8601作为其第一个参数:

var d = new Date("2014-04-07T13:58:10.104Z");
console.log(d.toString());


10
并非在所有浏览器中。请记住,ECMA规范对Date()的参数格式还是仍然含糊不清。因此,即使IE11也无法处理您的建议。
勒内·斯塔尔德

1
@RenéStalder实际上我刚刚在IE11中对其进行了测试,并且可以正常工作。您是否在其他IE版本中进行过测试?
罗布·埃文斯

8
@RenéStalder刚刚也在Win7上的IE9中进行了测试,它也在那里正常工作。实际上,到目前为止,我还没有找到一个不支持它的浏览器。
罗布·埃文斯

1
当然,在IE 9:Qurks模式下不起作用。我们中有些人需要与浏览器兼容。
programmerravi

2
在ES5之前,日期解析取决于实现。旧的浏览器将显示不一致的结果。
Mrchief '16

16

如果您想使其简单,则应满足以下条件:

function parseIsoDatetime(dtstr) {
    var dt = dtstr.split(/[: T-]/).map(parseFloat);
    return new Date(dt[0], dt[1] - 1, dt[2], dt[3] || 0, dt[4] || 0, dt[5] || 0, 0);
}

注意parseFloat是必须的,parseInt并不总是有效。地图需要IE9或更高版本。

适用于格式:

  • 2014-12-28 15:30:30
  • 2014-12-28T15:30:30
  • 2014-12-28

对于时区无效,请参阅有关这些时区的其他答案。


4
+1简单且便于携带。我进行了更改,将日期解释为UTC:return new Date(Date.UTC(dt[0], dt[1] - 1, dt[2], dt[3] || 0, dt[4] || 0, dt[5] || 0, 0));
Chris Olsen

处理最重要部分的非常好用的小函数:修复当月索引。
赛斯

4

也许您可以使用moment.js,我认为这是用于解析,格式化和使用客户端日期的最佳JavaScript库。您可以使用类似:

var momentDate = moment('1890-09-30T23:59:59+01:16:20', 'YYYY-MM-DDTHH:mm:ss+-HH:mm:ss');
var jsDate = momentDate.toDate();

// Now, you can run any JavaScript Date method

jsDate.toLocaleString();

使用诸如moment.js之类的库的优点是,即使在IE 8+等旧版浏览器中,您的代码也可以完美运行。

这是有关解析方法的文档:https ://momentjs.com/docs/#/parsing/


0

看起来moment.js是最受欢迎的并且开发活跃:

moment("2010-01-01T05:06:07", moment.ISO_8601);

-1

根据MSDN,JavaScript Date对象不提供任何特定的日期格式设置方法(如您在其他编程语言中所看到的)。但是,您可以使用一些Date方法和格式来实现您的目标:

function dateToString (date) {
  // Use an array to format the month numbers
  var months = [
    "January",
    "February",
    "March",
    ...
  ];

  // Use an object to format the timezone identifiers
  var timeZones = {
    "360": "EST",
    ...
  };

  var month = months[date.getMonth()];
  var day = date.getDate();
  var year = date.getFullYear();

  var hours = date.getHours();
  var minutes = date.getMinutes();
  var time = (hours > 11 ? (hours - 11) : (hours + 1)) + ":" + minutes + (hours > 11 ? "PM" : "AM");
  var timezone = timeZones[date.getTimezoneOffset()];

  // Returns formatted date as string (e.g. January 28, 2011 - 7:30PM EST)
  return month + " " + day + ", " + year + " - " + time + " " + timezone;
}

var date = new Date("2011-01-28T19:30:00-05:00");

alert(dateToString(date));

您甚至可以更进一步,并覆盖该Date.toString()方法:

function dateToString () { // No date argument this time
  // Use an array to format the month numbers
  var months = [
    "January",
    "February",
    "March",
    ...
  ];

  // Use an object to format the timezone identifiers
  var timeZones = {
    "360": "EST",
    ...
  };

  var month = months[*this*.getMonth()];
  var day = *this*.getDate();
  var year = *this*.getFullYear();

  var hours = *this*.getHours();
  var minutes = *this*.getMinutes();
  var time = (hours > 11 ? (hours - 11) : (hours + 1)) + ":" + minutes + (hours > 11 ? "PM" : "AM");
  var timezone = timeZones[*this*.getTimezoneOffset()];

  // Returns formatted date as string (e.g. January 28, 2011 - 7:30PM EST)
  return month + " " + day + ", " + year + " - " + time + " " + timezone;
}

var date = new Date("2011-01-28T19:30:00-05:00");
Date.prototype.toString = dateToString;

alert(date.toString());
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.