JSON响应日期与

时间:2017-06-28 15:35:32

标签: jquery json ajax wordpress

任何人都可以解释这个问题,我使用下面的代码从ajax请求输出JSON响应

    console.log('get_therapist_sessions, response);
    response.forEach(function(index){
      console.log(index);
    });

但是当我在console.log中日期是正确的,但是检查实际对象的日期是不正确的,我想要的是能够使用我使用console.log时出现的日期

output of console

1 个答案:

答案 0 :(得分:0)

这是因为您的对象start_dateend_date是最初不是字符串的Date对象。

如果您要将日期转换为字符串,请尝试start_date.toString()end_date.toString()。这是console.log()没有告诉你的。