HarmonyOS Navigator跳转后TextTimer控件无法倒计时

使用router方式跳转时倒计时可正常使用,使用Navigator方式跳转后只显示59不倒计时。

我们采用的这种跳转方式

static pushPathByName(appPathStack: NavPathStack, name: string, param?: Object, onPop?: Callback<PopInfo>, animated?: boolean){
  try {
    appPathStack.pushPathByName(name,param,onPop,animated)
  } catch (err) {
    console.debug("pushPathByName error "+err)
  }
}

是不是因为跳转方式的原因

HarmonyOS
18h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa

该方式跳转暂不支持,建议使用下述测试Demo的跳转方式。

// Navigator.ets
@Entry
@Component
struct NavigatorExample {
  @State active: boolean = false
  @State name: NameObject = { name: 'news' }

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
      Navigator({ target: 'pages/TextTimerPage', type: NavigationType.Push }) {
        Text('Go to ' + this.name.name + ' page')
          .width('100%').textAlign(TextAlign.Center)
      }.params(new TextObject(this.name)) // 传参数到Detail页面

      Navigator() {
        Text('Back to previous page').width('100%').textAlign(TextAlign.Center)
      }.active(this.active)
      .onClick(() => {
        this.active = true
      })
    }.height(150).width(350).padding(35)
  }
}

interface NameObject {
  name: string;
}

class TextObject {
  text: NameObject;

  constructor(text: NameObject) {
    this.text = text;
  }
}



//TextTimerPage
@Entry
@Component
struct TextTimerPage {
  @State elapsedTime: number =0;
  textTimerController: TextTimerController = new TextTimerController()

  onPageShow(): void {
    this.textTimerController.start()

  }

  build() {
    NavDestination(){
      Row(){
        TextTimer({isCountDown:true,count:59000,controller:this.textTimerController})
          .format("ss")
          .fontColor(Color.Brown)
          .onTimer((utc: number, elapsedTime: number)=>{
            this.elapsedTime =elapsedTime
          })
        Text("ss")
          .fontSize(15)
          .fontColor(Color.Orange)
      }
      .margin({top:25})
      .visibility(this.elapsedTime==59?Visibility.None:Visibility.Visible)
    }.hideTitleBar(true)
  }
}
分享
微博
QQ
微信
回复
16h前
相关问题
HarmonyOS TextTimer60秒倒计时显示成00
11浏览 • 1回复 待解决
HarmonyOS 倒计时天数
329浏览 • 1回复 待解决
HarmonyOS 倒计时方法
11浏览 • 1回复 待解决
HarmonyOS 如何自动倒计时组件
468浏览 • 1回复 待解决
HarmonyOS 60秒倒计时demo
182浏览 • 1回复 待解决
HarmonyOS 实现倒计时功能
53浏览 • 1回复 待解决
HarmonyOS Timer倒计时自定义
450浏览 • 1回复 待解决
如何实现文本类型的倒计时
914浏览 • 0回复 待解决
HarmonyOS 请问ArkTS如何实现倒计时功能?
32579浏览 • 8回复 待解决
如何实现一个倒计时器?
498浏览 • 1回复 待解决
HarmonyOS TextTimer 计时器使用问题
91浏览 • 1回复 待解决
HarmonyOS 跳转方式Router和Navigator
439浏览 • 1回复 待解决
提问
该提问已有0人参与 ,帮助了0人