当前位置:  开发笔记 > 编程语言 > 正文

如何将ISO 8601格式的日期值转换为JavaScript中的日期对象?

如何解决《如何将ISO8601格式的日期值转换为JavaScript中的日期对象?》经验,为你挑选了2个好方法。

我一直在尝试将日期值转换为更易读的格式.为此,我试图使用JavaScript Date.parse()方法解析日期.然而,这对"2007-09-21T14:15:34.058-07:00"我所拥有的输入(例如:)不起作用.最终目标是输出日期字符串"January 30th, 2008 @ 2:15PM".

有任何想法吗?



1> some..:

你或许应该使用datejs是f3lix建议,但是我觉得很无聊,一起扔一个小物件,做你问什么了:

2012年9月25日:清除代码,允许非扩展格式,例如20120925T164740 + 0200

2011年12月1日:修复了月份字符串中的错误.八月失踪了

var ISODate = {
  convert :
    function (input){
      if (!(typeof input === "string")) throw "ISODate, convert: input must be a string";
      var d = input.match(/^(\d{4})-?(\d{2})-?(\d{2})[T ](\d{2}):?(\d{2}):?(\d{2})(\.\d+)?(Z|(?:([+-])(\d{2}):?(\d{2})))$/i);
      if (!d) throw "ISODate, convert: Illegal format";
      return new Date(
        Date.UTC(
          d[1], d[2]-1, d[3],
          d[4], d[5], d[6], d[7] || 0 % 1 * 1000 | 0
        ) + (
          d[8].toUpperCase() === "Z" ? 0 :
            (d[10]*3600 + d[11]*60) * (d[9] === "-" ? 1000 : -1000)
        )
      );
    },
  format :
    function(date, utc){
      if (typeof date === "string") date = this.convert(date);
      if (!(date instanceof Date)) throw "ISODate, format: t is not a date object";

      var t={'FullYear':0, 'Month':0, 'Date':0, 'Hours':0, 'Minutes':0, 'Seconds':0};
      for (var key in t) {
        if (t.hasOwnProperty(key)) t[key] = date["get" +(utc ? "UTC" :"") + key]()
      }

      return this.month[t.Month]
        + " "
        + this.ordinal(t.Date)
        + ", "
        + t.FullYear
        + " @ "
        + this.clock12(t.Hours,t.Minutes);
      },
  month:
    [
      "January", "February", "March", "April", "May", "June",
      "July", "August", "September", "October", "November", "December"
    ],
  ordinal:
    function(n) {
      return n+(
        [
          "th", "st", "nd", "rd"
        ][
          (( n % 100 / 10) | 0) === 1 ? 0 : n % 10 < 4 ? n % 10 : 0
        ]
      );
  },
  clock12:
    function(h24, m, s){
      h24%=24;
      var h12 = (h24 % 12) || 12;
      return h12 + ":" +
        (m < 10 ? "0" + m : m) +
        (isFinite(s) ? ":" + (s < 10 ? "0" + s : s ) : "") +
        (h24 < 12 ? "AM" : "PM");
      }
};

例:

//Shows the date in the users timezone:
alert(ISODate.format("2007-09-21T14:15:34.058-07:00"));

//Show the date in UTC (Timezone Z, 00:00)
alert(ISODate.format("2007-09-21T14:15:34.058-07:00",true));

说明:

convert将字符串作为输入,如果成功则返回日期对象,否则抛出异常.该字符串必须采用以下格式之一:

YYYY-MM-DDTHH:MM:ss.sZ

YYYY-MM-DDTHH:MM:ss.sXaa:BB

哪里:

YYYY是4位整数的年份

MM是2个整数的月份

DD是月份的日期,为2位整数

T是字符T或空格(\ x20)

hh是24小时格式的小时,为2位整数

mm是作为2位整数的分钟

ss.s是第二个,可以是2位整数,也可以是2位数的浮点,后跟一个句点,后跟一个或多个数字.

Z是字符Z(表示时区Z,UTC + 00:00)

X是UTC时间偏移的加号(+)或减号( - )

aa是UTC的时间偏移小时,为2位整数

bb是ITC的时间偏移分钟,为2位整数

format采用上述格式的字符串或日期对象,并返回一个格式为:

MD,Y @ h:mm

其中 - M是月份的完整英文名称 - D是月份的日期,带有数字顺序后缀(1-2位数) - Y是年份(1位或更多位) - h是12小时格式的小时( 1-2位数) - m是分钟(2位数)

month是一个带有月份名称的数组

ordinal是一个函数,它接受一个数字作为输入并返回带有英文序数后缀的数字.

clock12是一个以24小时格式占用小时,分钟和秒的函数,并将其转换为美国12小时格式的字符串.该是可选的.



2> f3lix..:

试试http://www.datejs.com/.它是一个JavaScript Date Library,带有扩展的Date.parse方法和Date.parseExact方法,可以指定格式字符串.请参见DateJS APIDocumentation.


值得指出的是,这似乎并不完美,发展似乎已停止.英国文件的示例:`console.log(Date.parse('1997-07-16T19:20:30 + 01:00'));`输出null,如果时区部分被删除它可以工作,但在美国格式(1997年7月16日星期三19:20:30 GMT + 0100(BST)),而"1997年7月16日星期三......"本来会更加英国化.
推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有