4

我在使用来自 Google Calendar API 的日期格式的 datajs 时遇到问题。我相信的日期时间格式是 RFC3339,这是从日历 api 返回的示例日期时间

2012-01-05T08:45:00Z

这是来自这里的 datejs 文档

Date.parse('1985-04-12T23:20:50Z')          // RFC 3339 Formats

但这只是返回 null。

我假设我的 datejs 工作正常

Date.today().next().friday() 

返回 2012 年 5 月 11 日星期五 00:00:00 GMT+0100 (BST)

4

1 回答 1

7

已解决:根据此错误报告使用 Date.parseExact 或版本

使用 date.js 的演示

使用 date-en-US.js 进行演示


使用我得到的第一个版本

null
http://datejs.googlecode.com/files/date.js
Line 13

当我从测试套件中取出断言时:

// null
console.log('Date.parse("1985-04-12T23:20:50Z")',
  Date.parse('1985-04-12T23:20:50Z'));


// my previous answer works
console.log('Date.parse("1985-04-12T23:20:50Z".replace(...))',
     Date.parse('1985-04-12T23:20:50Z'
           .replace(/\-/g,'\/')
           .replace(/[T|Z]/g,' ')
     )
  );

// the test suite without the Z works
console.log('1985-04-12T23:20:50',
  new Date(1985,3,12,23,20,50).equals( Date.parse('1985-04-12T23:20:50')));

// but this one fails when not in the test suite    
try {
  console.log('1985-04-12T23:20:50Z',
    new Date(1985,3,12,23,20,50).equals( Date.parse('1985-04-12T23:20:50Z')));
}
catch(e) {
     console.log('1985-04-12T23:20:50Z',e.message);
}

这是不使用 date.js 时针对此问题的较旧答案

于 2012-05-10T10:01:55.330 回答