4

所以我写了一个方法,它需要一个数字并从当前日期减去月数。

我试图弄清楚如何在小于 10 的月份前添加“0”。此外,如何在小于 10 的日期前添加“0”。

目前,当它返回对象时(2012-6-9)。它返回 6 和 9,前面没有“0”,有人可以告诉我怎么做吗?

这是我的代码

lastNmonths = function(n) {
    var date = new Date();

    if (n <= 0)
        return [date.getFullYear(), date.getMonth() + 1 , date.getDate()].join('-');
    var years = Math.floor(n/12); 


   var months = n % 12;


    if (years > 0)
        date.setFullYear(date.getFullYear() - years);

    if (months > 0) {
        if (months >= date.getMonth()) {
            date.setFullYear(date.getFullYear()-1 );
            months = 12 - months; 
            date.setMonth(date.getMonth() + months );
        } else {
            date.setMonth(date.getMonth() - months);
        }
    }

}

    return [date.getFullYear(), date.getMonth() + 1, date.getDate()].join('-');
};
4

3 回答 3

13

如果 n < 10,您还可以使用以下方法避免测试:

("0" + (yourDate.getMonth() + 1)).slice(-2)
于 2013-02-16T22:26:40.733 回答
2

你可以写一个像这样的小函数:

function pad(n) {return (n<10 ? '0'+n : n);}

并将月份和日期传递给它

return [date.getFullYear(),pad(date.getMonth() + 1), pad(date.getDate())].join('-');
于 2013-02-16T22:22:43.047 回答
0

尝试连接“0”:

   month = date.getMonth() + 1 < 10 ? '0' + date.getMonth() + 1 : date.getMonth() + 1
   return [date.getFullYear(), month, date.getDate()].join('-');
于 2013-02-16T22:26:32.110 回答