我在HTML页面中有这段代码:
alert(JSON.stringify(new Date()));
我在我的页面中包含最新的json2.js(2009-09-29版本),以支持没有JSON.stringify()的旧浏览器。我还包括jquery-1.3.2.js。我相信具有原生JSON支持的新浏览器,它只是传递给本机JSON功能。
以下是我在不同浏览器中获得的结果:
IE 8 on Windows XP: "2010-02-07T21:39:32Z"
Chrome 4.0 on Windows XP: "2010-02-07T21:39:59Z"
Firefox 3.0 of Windows XP: "2010-02-07T21:40:41Z"
Chrome 4.0 on Ubuntu linux: "2010-02-07T21:41:49Z"
Firefox 3.0 on Ubuntu linux: "2010-02-07T21:42:44Z"
Chrome 4.0 on Mac OSX: "2010-02-07T21:43:56Z"
Safari on Mac OSX: "2010-02-07T21:45:21Z"
Firefox 3.5 on Mac OSX: "2010-02-07T21:44:10.101Z"
注意最后一个?它包含毫秒,而其他任何一个都没有。我没有在任何其他系统上安装FF3.5,但我假设它们会有相同的结果。
我能做些什么来让所有平台上的所有日期字符串相同吗?我的后端REST服务可以配置一个格式字符串来反序列化JSON日期,但它不能支持多种格式,只有一种格式。
答案 0 :(得分:9)
我有这个工作添加以下javascript:
// Added to make dates format to ISO8601
Date.prototype.toJSON = function (key) {
function f(n) {
// Format integers to have at least two digits.
return n < 10 ? '0' + n : n;
}
return this.getUTCFullYear() + '-' +
f(this.getUTCMonth() + 1) + '-' +
f(this.getUTCDate()) + 'T' +
f(this.getUTCHours()) + ':' +
f(this.getUTCMinutes()) + ':' +
f(this.getUTCSeconds()) + '.' +
f(this.getUTCMilliseconds()) + 'Z';
};
我确信这可能会减慢序列化速度,但它似乎可以使浏览器保持一致。
答案 1 :(得分:4)
您还可以稍微调整json2.js以始终使用自己的Date.prototype.toJSON
而不是可能的本地// if (typeof Date.prototype.toJSON !== 'function') {
Date.prototype.toJSON = function (key) {
return isFinite(this.valueOf()) ?
this.getUTCFullYear() + '-' +
f(this.getUTCMonth() + 1) + '-' +
f(this.getUTCDate()) + 'T' +
f(this.getUTCHours()) + ':' +
f(this.getUTCMinutes()) + ':' +
f(this.getUTCSeconds()) + 'Z' : null;
};
String.prototype.toJSON =
Number.prototype.toJSON =
Boolean.prototype.toJSON = function (key) {
return this.valueOf();
};
// }
。在这里,我取消注释了两行,它可以正常工作:
{{1}}
答案 2 :(得分:3)
// 你可能想考虑加强服务器, 识别任何有效的ISO 8601时间格式:
'2010-02-08T03:37:34.327Z'
'2010-02-08T03:38:06Z'
'2010-02-08T03:38 + 01:00'
'2010-02-08T03:34:18-05:00'
'2010-02-08T03:34Z'
'2010-02-08'
这是将任何iso字符串转换为javascript日期对象的方法。 它可以在服务器上使用一点点翻译:
Date.from_iso= function(s){
var D, M= [], hm, min= 0, d2,
Rx= /([\d:]+)(\.\d+)?(Z|(([+\-])(\d\d):(\d\d))?)?$/;
D= s.substring(0, 10).split('-');
if(s.length> 11){
M= s.substring(11).match(Rx) || [];
if(M[1]) D= D.concat(M[1].split(':'));
if(M[2]) D.push(Math.round(M[2]*1000));// msec
}
for(var i= 0, L= D.length; i<L; i++){
D[i]= parseInt(D[i], 10);
}
D[1]-= 1;
while(D.length< 6) D.push(0);
if(M[4]){
min= parseInt(M[6])*60+ parseInt(M[7], 10);// timezone not UTC
if(M[5]== '+') min*= -1;
}
try{
d2= Date.fromUTCArray(D);
if(min) d2.setUTCMinutes(d2.getUTCMinutes()+ min);
}
catch(er){
// bad input
}
return d2;
}
Date.fromUTCArray= function(A){
var D= new Date;
while(A.length < 7) A.push(0);
var T= A.splice(3, A.length);
D.setUTCFullYear.apply(D, A);
D.setUTCHours.apply(D, T);
return D;
}
答案 3 :(得分:0)
为什么不在JQuery的Datepicker jQuery-UI插件中使用formatDate函数来生成服务器端所需的格式?