我从 JSON API 得到以下字符串:
"Date": "\/Date(1381446000000+0100)\/",
应该是:
2013-10-11 00:00:00
但相反,我得到了这个:
2013-10-10T23:00:00.000Z
我的代码:
new Date(parseFloat(oldDate.replace("/Date(", "").replace(")/", "")));
我从 JSON API 得到以下字符串:
"Date": "\/Date(1381446000000+0100)\/",
应该是:
2013-10-11 00:00:00
但相反,我得到了这个:
2013-10-10T23:00:00.000Z
我的代码:
new Date(parseFloat(oldDate.replace("/Date(", "").replace(")/", "")));