ts-container-navigator.md 3.2 KB
Newer Older
Z
zengyawen 已提交
1 2
# Navigator

Z
zengyawen 已提交
3 4
路由容器组件,提供路由跳转能力。

T
third  
tianyu 已提交
5 6 7
> **说明:**
>
> 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
Z
zengyawen 已提交
8

Z
zengyawen 已提交
9 10

## 子组件
Z
zengyawen 已提交
11 12 13 14

可以包含子组件。


Z
zengyawen 已提交
15 16 17
## 接口

Navigator(value?: {target: string, type?: NavigationType})
Z
zengyawen 已提交
18

T
third  
tianyu 已提交
19 20 21 22 23 24
**参数:**

| 参数名 | 参数类型       | 必填 | 参数描述                                       |
| ------ | -------------- | ---- | ---------------------------------------------- |
| target | string         | 是   | 指定跳转目标页面的路径。                       |
| type   | NavigationType | 否   | 指定路由方式。<br/>默认值:NavigationType.Push |
Z
zengyawen 已提交
25

T
third  
tianyu 已提交
26
## NavigationType枚举说明
Z
zengyawen 已提交
27

T
third  
tianyu 已提交
28 29 30 31 32
| 名称      | 描述                         |
| ------- | -------------------------- |
| Push    | 跳转到应用内的指定页面。               |
| Replace | 用应用内的某个页面替换当前页面,并销毁被替换的页面。 |
| Back    | 返回上一页面或指定的页面。              |
Z
zengyawen 已提交
33 34 35 36


## 属性

T
third  
tianyu 已提交
37 38 39 40
| 名称   | 参数    | 描述                                                         |
| ------ | ------- | ------------------------------------------------------------ |
| active | boolean | 当前路由组件是否处于激活状态,处于激活状态时,会生效相应的路由操作。 |
| params | Object  | 跳转时要同时传递到目标页面的数据,可在目标页面使用router.getParams()获得。 |
Z
zengyawen 已提交
41 42 43


## 示例
Z
zengyawen 已提交
44

H
geshi  
HelloCrease 已提交
45 46
```ts
// Navigator.ets
Z
zengyawen 已提交
47 48 49 50
@Entry
@Component
struct NavigatorExample {
  @State active: boolean = false
T
tianyu 已提交
51
  @State Text: object = {name: 'news'}
Z
zengyawen 已提交
52 53 54 55

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
      Navigator({ target: 'pages/container/navigator/Detail', type: NavigationType.Push }) {
T
tianyu 已提交
56 57
        Text('Go to ' + this.Text['name'] + ' page')
            .width('100%').textAlign(TextAlign.Center)
Z
zengyawen 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70
      }.params({ text: this.Text })

      Navigator() {
        Text('Back to previous page').width('100%').textAlign(TextAlign.Center)
      }.active(this.active)
      .onClick(() => {
        this.active = true
      })
    }.height(150).width(350).padding(35)
  }
}
```

H
geshi  
HelloCrease 已提交
71 72
```ts
// Detail.ets
Z
zengyawen 已提交
73 74 75 76 77
import router from '@system.router'

@Entry
@Component
struct DetailExample {
T
tianyu 已提交
78
  @State text: any = router.getParams().text
Z
zengyawen 已提交
79 80 81 82 83 84 85

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
      Navigator({ target: 'pages/container/navigator/Back', type: NavigationType.Push }) {
        Text('Go to back page').width('100%').height(20)
      }

T
tianyu 已提交
86 87
      Text('This is ' + this.text['name'] + ' page')
          .width('100%').textAlign(TextAlign.Center)
Z
zengyawen 已提交
88 89 90 91 92 93 94
    }
    .width('100%').height(200).padding({ left: 35, right: 35, top: 35 })
  }
}

```

H
geshi  
HelloCrease 已提交
95 96
```ts
// Back.ets
Z
zengyawen 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109
@Entry
@Component
struct BackExample {
  build() {
    Column() {
      Navigator({ target: 'pages/container/navigator/Navigator', type: NavigationType.Back }) {
        Text('Return to Navigator Page').width('100%').textAlign(TextAlign.Center)
      }
    }.width('100%').height(200).padding({ left: 35, right: 35, top: 35 })
  }
}
```

Z
zengyawen 已提交
110
![zh-cn_image_0000001219864145](figures/zh-cn_image_0000001219864145.gif)