我有选择器日期的问题;
当我从选择器中选择日期并提交表单时...
在我的列表视图中,以这种格式显示的日期:
2019 年 11 月 3 日星期日 00:00:00 GMT-0700(太平洋夏令时)
如[屏幕截图][1]所示。
我想以这种格式显示日期:03/11/2019
我怎么办??
list-ech.page.html:
<ion-header>
</ion-header>
<ion-content>
<ion-grid>
<ion-row>
<ion-col size="12" size-sm="8" offset-sm="2">
<ion-list>
<ion-item-sliding *ngFor="let Echeancee of loadEcheances" #slidingItem="">
<ion-item [routerLink]="['/', 'list-echeances', Echeancee.id]" detail>
<ion-thumbnail item-start>
<ion-img [src]="Echeancee.chkImage"></ion-img>
</ion-thumbnail>
<h3>{{ Echeancee.BenefNamee }}</h3>
<p> {{ Echeancee.DateDuee }}</p>
</ion-item>
</ion-item-sliding>
</ion-list>
</ion-col>
</ion-row>
</ion-grid>
</ion-content>
Run Code Online (Sandbox Code Playgroud)