Change format of md-datepicker in Angular Material with momentjs

前端 未结 13 796
再見小時候
再見小時候 2020-11-28 09:01

Angular material introduced a new date picker component found here.

I want the date returned by this component to be in the format yyy-mm-dd but I am not su

13条回答
  •  死守一世寂寞
    2020-11-28 09:45

    I had same problem and came up with this simple solution with the help of moment.js. I used ng-change attribute which fires when the date is changed.

    Inside your HTML:

    
    

    Inside your controller:

    $scope.dateChanged = function() {
        this.myDate = moment(this.myDate).format('YYYY/MM/DD');
    }
    

提交回复
热议问题