#鸿蒙学习大百科#NavPathStack如何实现一个带错误码的跳转?

NavPathStack如何实现一个带错误码的跳转?

HarmonyOS
2024-10-25 10:36:41
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
朝花惜拾丶

跳转结束会触发异步回调,返回错误码信息。

this.pageStack.pushDestinationByName('PageOne', "PageOne Param")
  .catch((error: BusinessError) => {
    console.error(`Push destination failed, error code = ${error.code}, error.message = ${error.message}.`);
  }).then(() => {
  console.info('Push destination succeed.');
});
分享
微博
QQ
微信
回复
2024-10-25 15:50:37
相关问题