ion-datetime Ionic 3 显示初始值

ion-datetime Ionic 3 show initial value

我正在为我的项目使用 ion-datetime

https://ionicframework.com/docs/api/components/datetime/DateTime/

它运行良好,唯一的问题是我必须显示初始值,但不显示??

<ion-datetime displayFormat="YYYY" name="LastServiceDate" value="2017"></ion-datetime>

我把值放在 attibute 里面它不显示首字母?

文档中 ion-datetime 中没有值 属性,请尝试 ngModel。

<ion-datetime displayFormat="YYYY" name="LastServiceDate" [(ngModel)]="dateValueVar">
</ion-datetime>