HarmonyOS EntryAbility跳转页面如何携带参数?

我在服务卡片通过router方式拉起EntryAbility,并在params里面加入了所需参数,那么我该如何在EntryAbility里通过参数判断跳转到指定页面,因为指定页面放在其他module里面, windowStage.loadContent无法跳转,所以我想把参数通过 windowStage.loadContent跳转到index.page 然后在index.page通过参数再跳转到我指定的page,该如何实现?

HarmonyOS
2024-10-22 10:52:16
浏览
收藏 0
回答 1
回答 1
按赞同
/
按时间
put_get

简单的demo如下:

//卡片页面的ets

@Entry()  
@Component  
struct WidgetCard {  
  /*  
   * The title.  
   */  
  readonly TITLE: string = 'Hello World';  
  /*  
   * The action type.  
   */  
  readonly ACTION_TYPE: string = 'router';  
  /*  
   * The ability name.  
   */  
  readonly ABILITY_NAME: string = 'EntryAbility';  
  /*  
   * The message.  
   */  
  readonly MESSAGE: string = 'pages/searchSwiperPage';  
  /*  
   * The width percentage setting.  
   */  
  readonly FULL_WIDTH_PERCENT: string = '100%';  
  /*  
   * The height percentage setting.  
   */  
  readonly FULL_HEIGHT_PERCENT: string = '100%';  
  
  build() {  
    FormLink({  
      action: this.ACTION_TYPE,  
      abilityName: this.ABILITY_NAME,  
      params: {  
        message: this.MESSAGE,  
        type :'widgetCard'  
      }  
    }) {  
      Row() {  
        Column() {  
          Text(this.TITLE)  
            .fontSize($r('app.float.font_size'))  
            .fontWeight(FontWeight.Medium)  
            .fontColor($r('app.color.item_title_font'))  
  
        }  
        .width(this.FULL_WIDTH_PERCENT)  
      }  
      .height(this.FULL_HEIGHT_PERCENT)  
    }  
  }  
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.

//app的EntryAbility

import { AbilityConstant, UIAbility, Want } from '@kit.AbilityKit';  
import { hilog } from '@kit.PerformanceAnalysisKit';  
import { UIContext, window } from '@kit.ArkUI';  
  
export default class EntryAbility extends UIAbility {  
  
  private isWidgetCard :boolean = false  
  private routerStr :string =''  
  
  onCreate(want: Want, launchParam: AbilityConstant.LaunchParam): void {  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate');  
    this.recordedWidgetCard(want)  
  }  
  //记录卡片传入的参数,也可以用首选项记录  
  recordedWidgetCard(want:Want){  
    if (!want) {  
      this.isWidgetCard = false  
      this.routerStr = ''  
    }  
    let param =  want.parameters as Record<string, Object>;  
    let routerStr = param.message as string  
    let typeTemp = param.type as string  
    if (typeTemp === 'widgetCard') {  
      this.isWidgetCard = true  
      this.routerStr = routerStr  
  
    }  
    console.log(`recordedWidgetCard, want: ${routerStr}`);  
  }  
  
  onDestroy(): void {  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy');  
  }  
  
  onWindowStageCreate(windowStage: window.WindowStage): void {  
    // Main window is created, set main page for this ability  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate');  
    let routerStr = 'pages/Index'  
    //冷启动判断  
    if(this.isWidgetCard){  
      routerStr = this.routerStr  
    }  
    windowStage.loadContent(routerStr, (err) => {  
      if (err.code) {  
        hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');  
        return;  
      }  
      hilog.info(0x0000, 'testTag', 'Succeeded in loading the content.');  
    });  
  
  }  
  
  onWindowStageDestroy(): void {  
    // Main window is destroyed, release UI related resources  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy');  
  }  
  
  onForeground(): void {  
    // Ability has brought to foreground  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground');  
  }  
  
  onBackground(): void {  
    // Ability has back to background  
    hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground');  
  }  
  
  //热启动,跳转到具体到页面  
  onNewWant(want: Want, launchParam: AbilityConstant.LaunchParam) {  
    console.log(`onNewWant, want: ${want.abilityName}`);  
    window.getLastWindow(getContext(this), (error, topWindow) => {  
      if (topWindow) {  
        console.log(`onNewWant, want: ${JSON.stringify(want.parameters)}`);  
        let param =  want.parameters as Record<string, Object>;  
        let routerStr = param.message as string  
        if(routerStr != undefined){  
          let typeTemp = param.type as string//设置数据来源类型,便于跳转后的处理判断  
          let uiContext = topWindow.getUIContext();  
          let router = uiContext.getRouter();  
          router.pushUrl({  
            url: routerStr,  
            params: {  
              type: typeTemp  
            }  
          })  
        }  
  
      }  
    });  
  }  
}
  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
分享
微博
QQ
微信
回复
2024-10-22 17:52:16
相关问题
HarmonyOS router携带参数问题
490浏览 • 1回复 待解决
HarmonyOS llibrary中的两个页面如何跳转
391浏览 • 1回复 待解决
HarmonyOS 页面数据携带返回问题
692浏览 • 1回复 待解决
HarmonyOS 页面如何设置全屏显示?
1747浏览 • 1回复 待解决
HarmonyOS 页面如何禁止手势返回
620浏览 • 1回复 待解决