#鸿蒙学习大百科#如何通过NavPathStack来拦截路由中的页面?

如何通过NavPathStack来拦截路由中的页面?

HarmonyOS
2024-10-25 10:41:10
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
被窝终结者
this.pageStack.setInterception({
  willShow: (from: NavDestinationContext | "navBar", to: NavDestinationContext | "navBar",
    operation: NavigationOperation, animated: boolean) => {
    if (typeof to === "string") {
      console.log("target page is navigation home page.");
      return;
    }
    // 将跳转到PageTwo的路由重定向到PageOne
    let target: NavDestinationContext = to as NavDestinationContext;
    if (target.pathInfo.name === 'PageTwo') {
      target.pathStack.pop();
      target.pathStack.pushPathByName('PageOne', null);
    }
  }
})
分享
微博
QQ
微信
回复
2024-10-25 17:30:48
相关问题