在HarmonyOS NEXT开发中如何实验验证码倒计时后点击再次发送,重新显示倒计时?输入验证码页面,倒计时结束后显示重新发送,点击重新发送无法控制倒计时控件再次显示 当前困难影响:体验不好
在HarmonyOS NEXT开发中如何实验验证码倒计时后点击再次发送,重新显示倒计时?输入验证码页面,倒计时结束后显示重新发送,点击重新发送无法控制倒计时控件再次显示 当前困难影响:体验不好
解决方案示例(使用ArkTS):
@Entry
@Component
struct VerifyCodePage {
@State countdownTime: number = 60
@State isCounting: boolean = false
timerID: number = 0
// 启动倒计时
startCountdown() {
if (this.isCounting) return
this.isCounting = true
this.countdownTime = 60
this.timerID = setInterval(() => {
if (this.countdownTime > 0) {
this.countdownTime--
} else {
this.stopCountdown()
}
}, 1000)
}
// 停止倒计时
stopCountdown() {
clearInterval(this.timerID)
this.isCounting = false
}
// 发送验证码请求
sendVerifyCode() {
// 调用API发送验证码...
// 成功后重置倒计时
this.startCountdown()
}
build() {
Column() {
Button(this.isCounting ? `${this.countdownTime}s后重发` : '获取验证码')
.enabled(!this.isCounting)
.onClick(() => {
this.sendVerifyCode()
})
}
}
// 生命周期:页面消失时清除定时器
aboutToDisappear() {
this.stopCountdown()
}
}
关键实现点说明:
@State
装饰器管理倒计时时间(countdownTime)和计时状态(isCounting)startCountdown()
方法初始化倒计时并启动定时器stopCountdown()
方法清除定时器并重置状态enabled
属性控制按钮点击状态常见问题排查:
1 回答530 阅读✓ 已解决
1 回答537 阅读
1 回答479 阅读
492 阅读
491 阅读
490 阅读
454 阅读
具体如下所示: