我遇到了日期对象的问题,我的问题是,我返回一个没有问题的对象,它完美地JSON.parse
,问题在这里我有这个代码
var citas = JSON.parse(data.citas);
$.each(citas, function(index, value) {
console.log(value);
console.log(value.fecha);
});
这是我的console.log()
结果
Object {id: 1, fecha: Object, hora: "17:45:32", confirmada: true, informe: ""…}
Object {timezone: Object, offset: 7200, timestamp: 1502920800}
结果是完美的,但我想将value.fecha转换为我的数据库上的真实日期我的意思是这个例子是2017-08-17而我想将对象日期转换为这个日期,任何想法?
答案 0 :(得分:0)
感谢new Date(value.fecha.timestamp*1000);
是解决方案,我正在尝试new Date(value.fecha.timestamp);
而没有多重