日期管道 Angular 它不能只显示月和年它显示日期、月份和年份

Date Pipe Angular it is not able to show only Month and Year it shows date, month and year

我正在使用 bootstrap 输入日期并从对话框中保存新日期。 但是当我想展示时,我只想展示月份和年份。 我添加了管道来显示月份和年份,但它显示的是月份、年份和日期。

<input  name="startdate" [ngModel]="data.career.startDate | date: 'yyyy-MM-dd'"
                 (ngModelChange)="data.career.startDate = $event" type="date" class="form-control-sm">

这就是我保存数据的方式。

这就是我尝试显示日期的方式。

<input type="date" [ngModel]="subCategory.startDate | date: 'yyyy-MM-dd'" class="form-control-sm" readonly>

我在这里尝试编写管道 yyyy-MM 但没有成功。

我不想要 angular material 的 matpicker。 可以只显示月份和年份吗? 这是我看到的当前照片。 并且只以格式数字而不是月份显示为字符串。

<input type="date"> 将始终在支持的浏览器中显示本地日期格式。要显示格式化日期,请使用 <input type="text">