我有一个AppSwitch
,用于在我的应用程序中“激活/停用”用户帐户,它的检查状态是从数据库中读取的,该数据库按预期工作,根据每个用户的布尔值更改开关和文本。
我的问题是
每次我打开页面时AppSwitch
,它都会发送onCheckedChanged
信号 - 进而向用户发送通知,他们的帐户已被激活?我曾计划通过推送通知通知用户他们的帐户处于活动状态,但不希望每次管理员移动到他们的页面时都发送此消息!
我正在使用 Felgo(以前的 V-Play)进行开发,AppSwitch
文档的链接是:
Felgo AppSwitch
我的代码是:
Rectangle {
width: parent.width / 2
height: parent.height
Column {
id: column
anchors.fill: parent
AppButton {
id: groupStatusText
width: parent.width
height: parent.height / 2
}
AppSwitch {
id: editStatus
knobColorOn: "#b0ced9"
backgroundColorOn: "#81b1c2"
checked: {
//userListItem is the current profile details of the user page
if(userListItem.groupStatus === 1) {
groupStatusText.text = "Deactivate this user"
}
else if(userListItem.groupStatus === 0) {
groupStatusText.text = "Activate this user"
}
}
onCheckedChanged: {
if(editStatus.checked === true) {
//the signal which sends to my database on updating the value,
//works as intended but sends signal each time page is created?
detailPage.adminEditGroupStatus(1)
} else {
detailPage.adminEditGroupStatus(0)
}
}
}
}
onCheckedChanged
在加载页面的每个实例上触发信号是正常行为吗?或者我怎么能修改它只在用户更改它时触发!?
谢谢你的帮助!