切换页面时如何保持切换按钮

时间:2019-04-01 00:21:57

标签: ionic4 ion-toggle

我想要的是,当我单击切换按钮更改为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
}

0 个答案:

没有答案