简体   繁体   中英

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?

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" placeholder="Choose a date">

In your Component.ts

  onDataChange(newdate) {
    const _ = moment();
    const date = moment(newdate).add({hours: _.hour(), minutes:_.minute() , seconds:_.second()})
    this.date = date.toDate();
    console.log({hours: _.hour(), minutes:_.minute() , seconds:_.second()})
  }

you can find the full solution here https://stackblitz.com/edit/angular-ecq2lc

The angular material is not providing Time right now you need to manually get time from timeStamp, Try this -

function getTimeFromDate(timestamp) {
  let date = new Date(timestamp * 1000);
  let hours = date.getHours();
  let minutes = date.getMinutes();
  let seconds = date.getSeconds();
  return hours+":"+minutes+":"+seconds
}

let timeStamp = new Date("Mon May 28 2018 00:00:00 GMT+0530 (IST)")
console.log(getTimeFromDate(timeStamp));

现在,重要日期选择器仅提供当前日期(没有当前时间),但是正式回购中有一个未解决的问题,因此我们可能会在不久的将来看到一个时间选择器。

        For Example currenttime = Mon May 28 2018 00:00:00 GMT+0530 (IST)

    Currenttime is an example if  u using current date means just use new Date()  

    //Sample function calling Method 
            Exacttime(){
            this.functionName = this.diffhours(new(currenttime))
            }

            diffhours(currenttime){
               var diff = new Date(currenttime);
                diff .getHours(); // => 9
                diff .getMinutes(); // =>  30
                diff .getSeconds(); // => 51

}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM