Ion-toggle(ngModelChange)输出错误的输出

时间:2017-04-12 12:29:02

标签: angular ionic2 ion-toggle

这是我的.html文件

<ion-item no-lines (click)="update()" >
        <ion-label> Notification</ion-label>
        <ion-toggle [(ngModel)]="notify" (ngModelChange)="update()"></ion-toggle>
    </ion-item>

这是我的.ts文件

notify:boolean = true;

update(){
  consol.log(this.notify);
}
  

当我点击Notification文字时,我正在打印true

     

当我点击ion-toggle时,它会打印我false

当我点击离子切换时,它会打印出与布尔相反的内容,但我对此问题没有任何改变。

1 个答案:

答案 0 :(得分:0)

根据 ionic docs

尝试删除/重命名

中的功能更新
<ion-toggle [(ngModel)]="notify" (ngModelChange)="update()"></ion-toggle>

<强> DEMO