写点什么

OpenHarmony/HarmonyOS 路由跳转并传值

作者:坚果
  • 2023-06-24
    北京
  • 本文字数:617 字

    阅读完需:约 2 分钟

OpenHarmony/HarmonyOS路由跳转并传值

OpenHarmony/HarmonyOS 路由跳转并传值

作者:坚果团队:坚果派公众号:“大前端之旅”润开鸿技术专家,华为 HDE,InfoQ 签约作者,OpenHarmony 布道师,擅长 HarmonyOS 应用开发、熟悉服务卡片开发,在“战码先锋”活动中作为大队长,累计培养三个小队长,带领 100+队员完成 Pr 的提交合入。欢迎通过主页或者私信联系我,加入坚果派,一起学习 OpenHarmony/HarmonyOS 应用开发。


新建 SecondPage

SecondPage

import router from '@ohos.router'@Entry@Componentstruct SecondPage {  @State message: string = '我是设置页'  private  content:string =router.getParams()?.["name"]
build() { Row() { Column() { Text(this.content) .fontSize(50) .fontWeight(FontWeight.Bold) } .width('100%') } .height('100%') }}
复制代码

Index

import http from '@ohos.net.http';import promptAction from '@ohos.promptAction';import hilog from '@ohos.hilog';import router from '@ohos.router';
@Entry@Componentstruct Index {
build() {
Row() { Column() {

Text("路由跳转并携带参数").onClick(()=>{ router.pushUrl({ url:"pages/SecondPage", params:{ name:"我是要传递的值" } }) }) } .width('100%') } .height('100%') }}
复制代码


发布于: 刚刚阅读数: 4
用户头像

坚果

关注

此间若无火炬,我便是唯一的光 2020-10-25 加入

公众号:“大前端之旅”,OpenHarmony布道师,润和软件鸿蒙KOL,InfoQ签约作者,电子发烧友鸿蒙KOL

评论

发布
暂无评论
OpenHarmony/HarmonyOS路由跳转并传值_OpenHarmony_坚果_InfoQ写作社区