How to I get current time from angular material Date picker?
问题 I am using angular material datepicker https://material.angular.io/components/select/overview but this returns only the date and not the current time : Mon May 28 2018 00:00:00 GMT+0530 (IST) Is there any way I can get the current time also from this? 回答1: You can use the ngModelChange to parse the date before set it to your model, i recommend you momentJS for easy date manipulations. in the HTML <input [ngModel]="date" (ngModelChange)="onDataChange($event)" matInput [matDatepicker]="picker"