来自X的时间没有像预期的那样工作.js

时间:2014-07-30 05:37:44

标签: javascript momentjs

 $.each(data[i].replies, function(m, n) {
var currentdate = new Date();


                    console.log(n.entry.date_entered);

                    check = moment(n.entry.date_entered, 'YYYY/MM/DD');
                    check1 = moment(currentdate, 'YYYY/MM/DD');
                     console.log(check);
                     console.log(check1);

                    var month = check.format('M');
                    var day = check.format('DD');
                    var year = check.format('YYYY');

                     var month1 = check1.format('M');
                    var day1 = check1.format('DD');
                    var year1 = check1.format('YYYY');


                    get = moment([year, month, day]);
                     get1 = moment([year1, month1, day1]);
                   g = get1.from(get);
});

示例 n.entry.date_entered2014-07-28 12:23:43

对于我几秒钟前的所有日期,我们都不知道为什么

1 个答案:

答案 0 :(得分:1)

我认为您的问题是传递给moment的格式掩码。

在您的示例中,您使用-作为分隔符,但在格式掩码中使用/。这种方式moment将无法解析日期,而是会为您提供当前日期。

尝试将格式掩码更改为"YYYY-MM-DD"