如何设置离子日期时间元素的默认值?

How to set default value of ion-datetime element?

我设置了这样的日期时间选择器:

<ion-item>
    <ion-datetime displayFormat="h:mm a" pickerFormat="h mm a" minuteValues="0,15,30,45" [(ngModel)]="whInput"></ion-datetime>
</ion-item>

在您的构造函数中使用相同格式的字符串值设置您的 var whInput ngModel,如果您使用 YY-MM,请设置您的 var“16-11” 当你使用 [(ngModel)]="myVar" => 这是双向绑定

参见:enter link description here