在离子切换中打开和关闭时如何调用不同的函数
Posted
技术标签:
【中文标题】在离子切换中打开和关闭时如何调用不同的函数【英文标题】:How to call different function when toggling on and off in ion-toggle 【发布时间】:2018-09-17 06:42:59 【问题描述】:当切换按钮“打开”时,请参阅下面的函数 buttonOn()
被调用,
我想在“关闭”时拨打buttonOff()
,如下所示
.html
<ion-toggle (ionChange)="buttonOn()"></ion-toggle>
.ts
buttonOn()
// this function is called;
buttonOff()
// how to call this function when toggle button gets off?
【问题讨论】:
【参考方案1】:让我们用ngModel
绑定你的toggle的状态,然后根据状态调用函数
.html
<ion-toggle [(ngModel)]="status" (ionChange)="onChange()"></ion-toggle>
.ts
status=true;
onChange()
if(this.status)
this.buttonOn();
else
this.buttonOff()
buttonOn()
// this function is called;
buttonOff()
// how to call this function when toggle button gets off?
【讨论】:
以上是关于在离子切换中打开和关闭时如何调用不同的函数的主要内容,如果未能解决你的问题,请参考以下文章