当前位置:   article > 正文

HarmonyOS应用开发:UI界面-路由Router

HarmonyOS应用开发:UI界面-路由Router

页面路由

本模块提供通过不同的url访问不同的页面,包括跳转到应用内的指定页面、用应用内的某个页面替换当前页面、返回上一页面或指定的页面等。

说明

  • 页面路由需要在页面渲染完成之后才能调用,onInitonReady生命周期中页面还处于渲染阶段,禁止调用页面路由方法

导入模块

import router from '@ohos.router'

router.push

push(options: RouterOptions): void

跳转到应用内的指定页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsRouterOptions跳转页面描述信息。

示例:

  1. router.push({
  2. url: 'pages/routerpage2',
  3. params: {
  4. data1: 'message',
  5. data2: {
  6. data3: [123, 456, 789]
  7. },
  8. },
  9. });

router.push9+

push(options: RouterOptions, mode: RouterMode): void

跳转到应用内的指定页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsRouterOptions跳转页面描述信息。
modeRouterMode跳转页面使用的模式。

示例:

  1. router.push({
  2. url: 'pages/routerpage2/routerpage2',
  3. params: {
  4. data1: 'message',
  5. data2: {
  6. data3: [123, 456, 789]
  7. },
  8. },
  9. },router.RouterMode.Standard);

router.replace

replace(options: RouterOptions): void

用应用内的某个页面替换当前页面,并销毁被替换的页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsRouterOptions替换页面描述信息。

示例:

  1. router.replace({
  2. url: 'pages/detail',
  3. params: {
  4. data1: 'message',
  5. },
  6. });

router.replace9+

replace(options: RouterOptions, mode: RouterMode): void

用应用内的某个页面替换当前页面,并销毁被替换的页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsRouterOptions替换页面描述信息。
modeRouterMode跳转页面使用的模式。

示例:

  1. router.replace({
  2. url: 'pages/detail/detail',
  3. params: {
  4. data1: 'message',
  5. },
  6. }, router.RouterMode.Standard);

router.back

back(options?: RouterOptions ): void

返回上一页面或指定的页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsRouterOptions返回页面描述信息,其中参数url指路由跳转时会返回到指定url的界面,如果页面栈上没有url页面,则不响应该情况。如果url未设置,则返回上一页,页面栈里面的page不会回收,出栈后会被回收。

示例:

router.back({url:'pages/detail'});    

 

router.clear

clear(): void

清空页面栈中的所有历史页面,仅保留当前页面作为栈顶页面。

系统能力: SystemCapability.ArkUI.ArkUI.Full

示例:

router.clear();    

 

router.getLength

getLength(): string

获取当前在页面栈内的页面数量

系统能力: SystemCapability.ArkUI.ArkUI.Full

返回值:

类型说明
string页面数量,页面栈支持最大数值是32

示例:

  1. var size = router.getLength();
  2. console.log('pages stack size = ' + size);

 

router.getState

getState(): RouterState

获取当前页面的状态信息。

系统能力: SystemCapability.ArkUI.ArkUI.Full

返回值:

类型说明
RouterState页面状态信息。

示例:

  1. var page = router.getState();
  2. console.log('current index = ' + page.index);
  3. console.log('current name = ' + page.name);
  4. console.log('current path = ' + page.path);

RouterState

页面状态信息。

系统能力: SystemCapability.ArkUI.ArkUI.Full。

名称类型说明
indexnumber表示当前页面在页面栈中的索引。从栈底到栈顶,index从1开始递增
namestring表示当前页面的名称,即对应文件名。
pathstring表示当前页面的路径。

router.enableAlertBeforeBackPage

enableAlertBeforeBackPage(options: EnableAlertOptions): void

开启页面返回询问对话框。

系统能力: SystemCapability.ArkUI.ArkUI.Full

参数:

参数名类型必填说明
optionsEnableAlertOptions文本弹窗信息描述。

示例:

  1. router.enableAlertBeforeBackPage({
  2. message: 'Message Info'
  3. });

 

EnableAlertOptions

页面返回询问对话框选项。

系统能力: 以下各项对应的系统能力均为SystemCapability.ArkUI.ArkUI.Full。

名称类型必填说明
messagestring询问对话框内容。

router.disableAlertBeforeBackPage

disableAlertBeforeBackPage(): void

禁用页面返回询问对话框。

系统能力: SystemCapability.ArkUI.ArkUI.Full

示例:

router.disableAlertBeforeBackPage();    

 

router.getParams

getParams(): Object

获取发起跳转的页面往当前页传入的参数。

系统能力: SystemCapability.ArkUI.ArkUI.Full

返回值:

类型说明
Object发起跳转的页面往当前页传入的参数。

示例:

router.getParams();

 

RouterOptions

路由跳转选项。

系统能力: SystemCapability.ArkUI.ArkUI.Lite。

名称类型必填说明
urlstring表示目标页面的url,可以用以下两种格式:
- 页面绝对路径,由配置文件中pages列表提供,例如:
  - pages/index/index
  - pages/detail/detail
- 特殊值,如果url的值是"/",则跳转到首页。
paramsObject跳转时要同时传递到目标页面的数据,跳转到目标页面后,参数可以在页面中直接使用,如this.data1(data1为跳转时params参数中的key值)。如果目标页面中已有该字段,则其值会被传入的字段值覆盖。

说明: 页面路由栈支持的最大Page数量为32。

RouterMode9+

路由跳转模式。

系统能力: SystemCapability.ArkUI.ArkUI.Full。

名称描述
Standard标准模式。
Single单实例模式。
如果目标页面的url在页面栈中已经存在同url页面,离栈顶最近的页面会被移动到栈顶,移动后的页面为新建页。
如目标页面的url在页面栈中不存在同url页面,按标准模式跳转。

完整示例

基于JS扩展的类Web开发范式

  1. // 在当前页面中
  2. export default {
  3. pushPage() {
  4. router.push({
  5. url: 'pages/detail/detail',
  6. params: {
  7. data1: 'message',
  8. },
  9. });
  10. }
  11. }

 

  1. // 在detail页面中
  2. export default {
  3. onInit() {
  4. console.info('showData1:' + router.getParams()[data1]);
  5. }
  6. }

基于TS扩展的声明式开发范式

  1. //通过router.push跳转至目标页携带params参数
  2. import router from '@ohos.router'
  3. @Entry
  4. @Component
  5. struct Index {
  6. async routePage() {
  7. let options = {
  8. url: 'pages/second',
  9. params: {
  10. text: '这是第一页的值',
  11. data: {
  12. array: [12, 45, 78]
  13. },
  14. }
  15. }
  16. try {
  17. await router.push(options)
  18. } catch (err) {
  19. console.info(` fail callback, code: ${err.code}, msg: ${err.msg}`)
  20. }
  21. }
  22. build() {
  23. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
  24. Text('这是第一页')
  25. .fontSize(50)
  26. .fontWeight(FontWeight.Bold)
  27. Button() {
  28. Text('next page')
  29. .fontSize(25)
  30. .fontWeight(FontWeight.Bold)
  31. }.type(ButtonType.Capsule)
  32. .margin({ top: 20 })
  33. .backgroundColor('#ccc')
  34. .onClick(() => {
  35. this.routePage()
  36. })
  37. }
  38. .width('100%')
  39. .height('100%')
  40. }
  41. }

 

  1. //在second页面中接收传递过来的参数
  2. import router from '@ohos.router'
  3. @Entry
  4. @Component
  5. struct Second {
  6. private content: string = "这是第二页"
  7. @State text: string = router.getParams()['text']
  8. @State data: any = router.getParams()['data']
  9. @State secondData : string = ''
  10. build() {
  11. Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
  12. Text(`${this.content}`)
  13. .fontSize(50)
  14. .fontWeight(FontWeight.Bold)
  15. Text(this.text)
  16. .fontSize(30)
  17. .onClick(()=>{
  18. this.secondData = (this.data.array[1]).toString()
  19. })
  20. .margin({top:20})
  21. Text('第一页传来的数值' + ' ' + this.secondData)
  22. .fontSize(20)
  23. .margin({top:20})
  24. .backgroundColor('red')
  25. }
  26. .width('100%')
  27. .height('100%')
  28. }
  29. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/221000
推荐阅读
相关标签
  

闽ICP备14008679号