我想在 Ionic 4 中获取日期对象,但我找不到日期,我无法编译代码。
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-bookingdetail',
templateUrl: './bookingdetail.page.html',
styleUrls: ['./bookingdetail.page.scss'],
})
export class BookingdetailPage implements OnInit {
d = new Date();
}
要在 IONIC 4 中设置组件,请使用 toISOString 函数:
<ion-datetime [value]="today"></ion-datetime>
ngOnInit() {
const now = new Date();
this.today = now.toISOString();
}
将变量分配给日期类型。 然后,对于最简单的使用:您可以在加载页面时控制台记录结果。
export class BookingdetailPage implements OnInit {
d: Date = new Date();
}
ngOnInit() {
console.log(this.d);
}
输出(在控制台中)
2019 年 1 月 21 日星期一 08:35:52 GMT+0100(中欧标准)
export class BookingdetailPage implements OnInit {
public currentDate: String;
}
constructor(){
this.date = new Date().getTime();
this.currentDate = (new Date()).toISOString();
}