我试图通过将模型变量bind设置为true来首先检查一个ion-checkbox。但这对复选框没有任何影响。请查看下面的类似示例。
以HTML格式
<ion-checkbox [(ngModel)]="isFixed" [checked]="isFixed" [ngModelOptions]="{standalone: true}" required slot="end"></ion-checkbox>
在component.ts
中ngAfterViewInit() {
this.isFixed = true;
}