1# Navigator 2 3路由容器组件,提供路由跳转能力。 4 5> **说明:** 6> 7> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 8 9 10## 子组件 11 12可以包含子组件。 13 14 15## 接口 16 17Navigator(value?: {target: string, type?: NavigationType}) 18 19**参数:** 20 21| 参数名 | 参数类型 | 必填 | 参数描述 | 22| ------ | -------------- | ---- | ---------------------------------------------- | 23| target | string | 是 | 指定跳转目标页面的路径。 | 24| type | [NavigationType](#navigationtype枚举说明) | 否 | 指定路由方式。<br/>默认值:NavigationType.Push | 25 26## NavigationType枚举说明 27 28| 名称 | 描述 | 29| ------- | -------------------------- | 30| Push | 跳转到应用内的指定页面。 | 31| Replace | 用应用内的某个页面替换当前页面,并销毁被替换的页面。 | 32| Back | 返回到指定的页面。指定的页面不存在栈中时不响应。未传入指定的页面时返回上一页。 | 33 34 35## 属性 36 37| 名称 | 参数 | 描述 | 38| ------ | ------- | ------------------------------------------------------------ | 39| active | boolean | 当前路由组件是否处于激活状态,处于激活状态时,会生效相应的路由操作。 | 40| params | object | 跳转时要同时传递到目标页面的数据,可在目标页面使用[router.getParams()](../apis/js-apis-router.md#routergetparams)获得。 | 41| target | string | 设置跳转目标页面的路径。 目标页面需加入main_pages.json文件中。 | 42| type | [NavigationType](#navigationtype枚举说明) | 设置路由方式。<br/>默认值:NavigationType.Push | 43 44 45## 示例 46 47```ts 48// Navigator.ets 49@Entry 50@Component 51struct NavigatorExample { 52 @State active: boolean = false 53 @State Text: object = {name: 'news'} 54 55 build() { 56 Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) { 57 Navigator({ target: 'pages/container/navigator/Detail', type: NavigationType.Push }) { 58 Text('Go to ' + this.Text['name'] + ' page') 59 .width('100%').textAlign(TextAlign.Center) 60 }.params({ text: this.Text }) // 传参数到Detail页面 61 62 Navigator() { 63 Text('Back to previous page').width('100%').textAlign(TextAlign.Center) 64 }.active(this.active) 65 .onClick(() => { 66 this.active = true 67 }) 68 }.height(150).width(350).padding(35) 69 } 70} 71``` 72 73```ts 74// Detail.ets 75import router from '@ohos.router' 76 77@Entry 78@Component 79struct DetailExample { 80 // 接收Navigator.ets的传参 81 @State text: any = router.getParams()['text'] 82 83 build() { 84 Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) { 85 Navigator({ target: 'pages/container/navigator/Back', type: NavigationType.Push }) { 86 Text('Go to back page').width('100%').height(20) 87 } 88 89 Text('This is ' + this.text['name'] + ' page') 90 .width('100%').textAlign(TextAlign.Center) 91 } 92 .width('100%').height(200).padding({ left: 35, right: 35, top: 35 }) 93 } 94} 95 96``` 97 98```ts 99// Back.ets 100@Entry 101@Component 102struct BackExample { 103 build() { 104 Column() { 105 Navigator({ target: 'pages/container/navigator/Navigator', type: NavigationType.Back }) { 106 Text('Return to Navigator Page').width('100%').textAlign(TextAlign.Center) 107 } 108 }.width('100%').height(200).padding({ left: 35, right: 35, top: 35 }) 109 } 110} 111``` 112 113![zh-cn_image_0000001219864145](figures/zh-cn_image_0000001219864145.gif) 114