如何增加角度数月

时间:2018-12-27 11:43:09

标签: angular typescript

我有一个星期大的角,在我的应用程序(第7个角)中,我使用了owldate picker,并且在那个日期之前,我需要将3个月增加到所选日期。说“值”来自日期选择器,当我执行value.getMonth()时,它总是返回11。我也尝试过使用momentjs,

 import * as moment from 'moment'
    ..........
   newDate :moment.Moment
   newDate= value 
    constructor(){
     this.newDate .add(3,'months');
      }

这将返回错误:“ _ this.nwrdate.add不是函数”。我被困在这里!也许这很基本,但是我被困在这里!

1 个答案:

答案 0 :(得分:0)

尝试一下:

import * as moment from 'moment';

constructor() {

    let now = moment();
    console.log(now.format());
    // This line adds 3 moths to your date
    console.log(now.add(3, 'months').format()); 

}

让我知道是否需要更多帮助