我遇到日期格式问题。 以前,我使用MVC .Net格式将日期从DB发送到javascript,如下所示:
'\/Date(1111111111)\/'.jsonToDate()
现在我正在使用JSON.Net,我将一个ISOFormatted Date发送到javascript,如下所示:
new Date('2014-03-24T07:00:00+01:00')
但现在我的偏差为1小时(巴黎时间)。
解决此问题的最佳方法是什么?
感谢您的帮助。
答案 0 :(得分:0)
如何转换为UTC并返回ISO sting?
var utcStr=new Date('2014-03-24T07:00:00+01:00').toUTCString();
new Date(Date.parse(utcStr)).toISOString() //2014-03-24T06:00:00.000Z
有一些内置库,如Moment.js用于日期操作