#鸿蒙通关秘籍#如何在HarmonyOS中实现Navigation的路由跳转?

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

HarmonyOS的Navigation组件可以通过NavPathStack对象进行路由管理,使用pushPath、pushPathByName等方法实现页面跳转。示例如下:

// 普通跳转
this.pageStack.pushPath({ name: "PageOne", param: "PageOne Param" })

// 带返回回调的跳转
this.pageStack.pushPathByName('PageOne', "PageOne Param", (popInfo) => {
  console.log('Pop page name is: ' + popInfo.info.name + ', result: ' + JSON.stringify(popInfo.result))
});
分享
微博
QQ
微信
回复
17h前
相关问题
Navigation实现动态路由方式
645浏览 • 1回复 待解决
如何实现路由动态跳转
337浏览 • 1回复 待解决