HarmonyOS router.pushurl里不同模块之间的跳转

从游戏模块的loginPage push到common模块的webpage页面,这个跳转地址(url)要怎么写。

HarmonyOS
2天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
superinsect

router已经不再演进,推荐使用Navigation路由。

参考以下代码:

在MainHar中

import { harAPage } from 'harA/src/main/ets/components/mainpage/harAPage';

@Entry
@Component
struct Index {
  @State message: string = 'Navigation能力提供';
  @Provide('pageStack') pageStack: NavPathStack = new NavPathStack();

  @Builder
  pageMap(name: string) {
    if (name === 'harAPage') {
      harAPage();
    }
  }

  build() {
    Navigation(this.pageStack) {
      Column() {
        Text(this.message)
          .fontSize(50)
          .fontWeight(FontWeight.Bold)

        Button("去HarA").onClick(() => {
          let pathInfo: NavPathInfo = new NavPathInfo('harAPage', "111111", (popInfo: PopInfo) => {
          })
          this.pageStack.pushDestination(pathInfo,true);
        })
      }
      .width('100%')
    }.navDestination(this.pageMap)
  }
}

在HarA中:

@Component
export struct harAPage {
  @State message: string = 'HarA';
  @Consume('pageStack') pageStack: NavPathStack;

  build() {
    NavDestination(){
      Row() {
        Column() {
          Text(this.message)
            .fontSize(50)
            .fontWeight(FontWeight.Bold)
        }
        .width('100%')
      }
      .height('100%')
    }
  }
}
分享
微博
QQ
微信
回复
2天前
相关问题
HarmonyOS router.pushUrl跳转报100002
586浏览 • 1回复 待解决
router.pushUrl 无法使用Map类型参数
499浏览 • 1回复 待解决
router.pushUrl是否无法使用Map类型参数
767浏览 • 1回复 待解决
同一个HSP中,router.pushUrlurl问题
400浏览 • 1回复 待解决
HarmonyOS router pushUrl报错
685浏览 • 1回复 待解决