我有一个JSON对象,在字符串化时看起来像这个[{"x":"/Date(1451606400000)/","y":877282.57}]
我希望得到日期1451606400000
我可以使用正则表达式,但是有一种更简单的方法来解析日期对象吗?也许我可以从该值构造一个日期,然后调用一个方法来获取数字组件?
答案 0 :(得分:0)
这个问题很混乱。 当你说"我想得到数字部分"我不明白......也许你可以更明确。
我的anwser假设您想将字符串值转换为日期对象(再次,我可能错了)
var dateString = "1451606400000"; //save string value to a varable
var dateInt = Number(dateString); //convert to number
//after converting to number parse the value into the date object.
//Note: parsing a string value direct will through an exception
var dateObject = new Date(dateInt);
console.log(dateObject); //Date 2016-01-01T00:00:00.000Z