如何在 Ionic 4 中获取日期对象

问题描述 投票:0回答:3

我想在 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();
}


angular6 ionic4
3个回答
1
投票

要在 IONIC 4 中设置组件,请使用 toISOString 函数:

<ion-datetime  [value]="today"></ion-datetime>

ngOnInit() {
   const now = new Date();
   this.today = now.toISOString();
}

0
投票

将变量分配给日期类型。 然后,对于最简单的使用:您可以在加载页面时控制台记录结果。

export class BookingdetailPage implements OnInit {
   d: Date = new Date();
}     

ngOnInit() {
   console.log(this.d);
}

输出(在控制台中)

2019 年 1 月 21 日星期一 08:35:52 GMT+0100(中欧标准)


0
投票
export class BookingdetailPage implements OnInit {
  public currentDate: String;
}

constructor(){ 
 this.date = new Date().getTime();
 this.currentDate = (new Date()).toISOString();
 }
© www.soinside.com 2019 - 2024. All rights reserved.