无法通过在ngAfterViewInit中将值设置为true来选中离子复选框

时间:2019-05-14 10:18:49

标签: javascript ionic-framework

我试图通过将模型变量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;
}

0 个答案:

没有答案