Change format of md-datepicker in Angular Material with momentjs

前端 未结 13 788
再見小時候
再見小時候 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:52

    I used $mdDateLocaleProvider to format it on the frond end. If you want to format date while sending it to the back end, the following worked for me :-

    $filter('date')(this.date, 'MM/dd/yyyy');
    

    I have the above in controller.

提交回复
热议问题