我想要的是,当我单击切换按钮更改为 true 时,它应该保持为 true {edit} 这意味着当我单击切换/开关时,它会将默认值更新为 true,因此当页面刷新时,切换仍然是在 true 上,直到我再次单击它以更新回 false。
并在单独的页面上显示示例:
前门:活动。(打开)。
前门:不活动(关闭)。
//就我目前为止
HTML
<ion-item>
<ion-label>Front Door</ion-label>
<ion-toggle [(ngModel)]="fdoor" (click)="toggle()"></ion-toggle>
</ion-item>
TS
toggle() {
//attempt to figure this out
If(this.fdoor = true) {
This.fdoor = true) } //I relized that this doesn't do anything but set it back to false so I feel dumb
}