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

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

Z
zengyawen 已提交
6 7 8

路由容器组件,提供路由跳转能力。

Z
zengyawen 已提交
9 10

## 权限列表
Z
zengyawen 已提交
11 12 13



Z
zengyawen 已提交
14 15

## 子组件
Z
zengyawen 已提交
16 17 18 19

可以包含子组件。


Z
zengyawen 已提交
20 21 22
## 接口

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

创建路由组件。

Z
zengyawen 已提交
26
- 参数
H
geshi  
HelloCrease 已提交
27 28 29 30
  | 参数名    | 参数类型           | 必填   | 默认值                 | 参数描述         |
  | ------ | -------------- | ---- | ------------------- | ------------ |
  | target | string         | 是    | -                   | 指定跳转目标页面的路径。 |
  | type   | NavigationType | 否    | NavigationType.Push | 指定路由方式。      |
Z
zengyawen 已提交
31 32

- NavigationType枚举说明
H
geshi  
HelloCrease 已提交
33 34 35 36 37
  | 名称      | 描述                         |
  | ------- | -------------------------- |
  | Push    | 跳转到应用内的指定页面。               |
  | Replace | 用应用内的某个页面替换当前页面,并销毁被替换的页面。 |
  | Back    | 返回上一页面或指定的页面。              |
Z
zengyawen 已提交
38 39 40 41


## 属性

H
geshi  
HelloCrease 已提交
42 43 44 45
| 名称     | 参数      | 默认值       | 描述                                       |
| ------ | ------- | --------- | ---------------------------------------- |
| active | boolean | -         | 当前路由组件是否处于激活状态,处于激活状态时,会生效相应的路由操作。       |
| params | Object  | undefined | 跳转时要同时传递到目标页面的数据,可在目标页面使用router.getParams()获得。 |
Z
zengyawen 已提交
46 47 48


## 示例
Z
zengyawen 已提交
49

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

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Start, justifyContent: FlexAlign.SpaceBetween }) {
      Navigator({ target: 'pages/container/navigator/Detail', type: NavigationType.Push }) {
T
tianyu 已提交
61 62
        Text('Go to ' + this.Text['name'] + ' page')
            .width('100%').textAlign(TextAlign.Center)
Z
zengyawen 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75
      }.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 已提交
76 77
```ts
// Detail.ets
Z
zengyawen 已提交
78 79 80 81 82
import router from '@system.router'

@Entry
@Component
struct DetailExample {
T
tianyu 已提交
83
  @State text: any = router.getParams().text
Z
zengyawen 已提交
84 85 86 87 88 89 90

  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 已提交
91 92
      Text('This is ' + this.text['name'] + ' page')
          .width('100%').textAlign(TextAlign.Center)
Z
zengyawen 已提交
93 94 95 96 97 98 99
    }
    .width('100%').height(200).padding({ left: 35, right: 35, top: 35 })
  }
}

```

H
geshi  
HelloCrease 已提交
100 101
```ts
// Back.ets
Z
zengyawen 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114
@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 已提交
115
![zh-cn_image_0000001219864145](figures/zh-cn_image_0000001219864145.gif)