前提:Angular6中需要获得当前日期并格式化,查看文档后发现有formatDate方法,如下使用:
import { Component, OnInit, Inject, LOCALE_ID } from '@angular/core';
import { formatDate } from '@angular/common';
export class LoginComponent implements OnInit {
constructor(@Inject(LOCALE_ID) private locale: string) {}
// 获得当前时间
getCurrentDate(date) {
return formatDate(date, 'yyyy-MM-dd HH:mm:ss', this.locale);
}
}