js-apis-system-router.md 11.0 KB
Newer Older
Z
zengyawen 已提交
1 2
# 页面路由

T
explain  
tianyu 已提交
3 4
通过不同的uri访问不同的页面。

H
HelloCrease 已提交
5
> **说明:**
H
HelloCrease 已提交
6
>
Z
zengyawen 已提交
7
> - 从API Version 8 开始,该接口不再维护,推荐使用新接口[`@ohos.router`](js-apis-router.md)。
H
HelloCrease 已提交
8 9 10
>
>
> - 本模块首批接口从API version 3开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Z
zengyawen 已提交
11 12 13 14 15


## 导入模块


H
HelloCrease 已提交
16
```js
Z
zengyawen 已提交
17 18 19 20 21
import router from '@system.router';
```

## router.push

22
push(options: RouterOptions): void
Z
zengyawen 已提交
23 24 25 26 27 28 29

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

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

**参数:**

H
HelloCrease 已提交
30 31 32
| 参数名     | 类型                              | 必填   | 说明                         |
| ------- | ------------------------------- | ---- | -------------------------- |
| options | [RouterOptions](#routeroptions) | 是    | 页面路由参数,详细请参考RouterOptions。 |
Z
zengyawen 已提交
33 34 35

**示例:**

H
HelloCrease 已提交
36
```js
Z
zengyawen 已提交
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
// 在当前页面中
export default {
  pushPage() {
    router.push({
      uri: 'pages/routerpage2/routerpage2',
      params: {
        data1: 'message',
        data2: {
          data3: [123, 456, 789]
	},
      },
    });
  }
}
```


H
HelloCrease 已提交
54
```js
Z
zengyawen 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
// 在routerpage2页面中
export default {
  data: {
    data1: 'default',
    data2: {
      data3: [1, 2, 3]
    }
  },
  onInit() {
    console.info('showData1:' + this.data1);
    console.info('showData3:' + this.data2.data3);
  }
}
```

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 页面路由栈支持的最大Page数量为32。


## router.replace

76
replace(options: RouterOptions): void
Z
zengyawen 已提交
77 78 79 80 81 82 83

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

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

**参数:**

H
HelloCrease 已提交
84 85 86
| 参数名     | 类型                              | 必填   | 说明                         |
| ------- | ------------------------------- | ---- | -------------------------- |
| options | [RouterOptions](#routeroptions) | 是    | 页面路由参数,详细请参考RouterOptions。 |
Z
zengyawen 已提交
87 88 89

**示例:**

H
HelloCrease 已提交
90
```js
Z
zengyawen 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103 104
// 在当前页面中
export default {
  replacePage() {
    router.replace({
      uri: 'pages/detail/detail',
      params: {
        data1: 'message',
      },
    });
  }
}
```


H
HelloCrease 已提交
105
```js
Z
zengyawen 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118
// 在detail页面中
export default {
  data: {
    data1: 'default'
  },
  onInit() {
    console.info('showData1:' + this.data1)
  }
}
```

## router.back

119
back(options?: BackRouterOptions): void
Z
zengyawen 已提交
120 121 122 123 124 125 126

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

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

**参数:**

H
HelloCrease 已提交
127 128 129
| 参数名     | 类型                                      | 必填   | 说明                      |
| ------- | --------------------------------------- | ---- | ----------------------- |
| options | [BackRouterOptions](#backrouteroptions) | 是    | 详细请参考BackRouterOptions。 |
Z
zengyawen 已提交
130 131 132

**示例:**

H
HelloCrease 已提交
133
```js
Z
zengyawen 已提交
134 135 136 137 138 139 140 141 142 143 144
// index页面
export default {    
  indexPushPage() {        
    router.push({            
      uri: 'pages/detail/detail',        
    });        
  }
}
```


H
HelloCrease 已提交
145
```js
Z
zengyawen 已提交
146 147 148 149 150 151 152 153 154 155 156
// detail页面
export default {    
  detailPushPage() {        
    router.push({            
      uri: 'pages/mall/mall',        
    });    
  }
}
```


H
HelloCrease 已提交
157
```js
Z
zengyawen 已提交
158 159 160 161 162 163 164 165 166
// mall页面通过back,将返回detail页面
export default {    
  mallBackPage() {        
    router.back();    
  }
}
```


H
HelloCrease 已提交
167
```js
Z
zengyawen 已提交
168 169 170 171 172 173 174 175 176
// detail页面通过back,将返回index页面
export default {    
  defaultBack() {        
    router.back();    
  }
}
```


H
HelloCrease 已提交
177
```js
Z
zengyawen 已提交
178 179 180 181 182 183 184 185 186 187 188
// 通过back,返回到detail页面
export default {    
  backToDetail() {        
    router.back({uri:'pages/detail/detail'});    
  }
}
```

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 示例中的uri字段是页面路由,由配置文件中的pages列表指定。

189 190 191 192 193 194 195 196 197 198
## router.getParams

getParams(): ParamsInterface

获取当前页面的参数信息。

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

**返回值:**

H
HelloCrease 已提交
199 200 201
| 类型                                  | 说明                    |
| ----------------------------------- | --------------------- |
| [ParamsInterface](#paramsinterface) | 详细请参见ParamsInterface。 |
202

Z
zengyawen 已提交
203 204 205 206 207 208 209 210 211 212
## router.clear

clear(): void

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

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

**示例:**

H
HelloCrease 已提交
213
```js
Z
zengyawen 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
export default {    
  clearPage() {        
    router.clear();    
  }
}
```

## router.getLength

getLength(): string

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

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

**返回值:**

H
HelloCrease 已提交
231 232
| 类型     | 说明                 |
| ------ | ------------------ |
Z
zengyawen 已提交
233 234 235 236
| string | 页面数量,页面栈支持最大数值是32。 |

**示例:**

H
HelloCrease 已提交
237
```js
Z
zengyawen 已提交
238 239 240 241 242 243 244 245 246 247
export default {     
  getLength() {        
    var size = router.getLength();        
    console.log('pages stack size = ' + size);    
  }
}
```

## router.getState

248
getState(): RouterState
Z
zengyawen 已提交
249 250 251 252 253 254 255

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

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

**返回值:**

H
HelloCrease 已提交
256 257 258
| 参数类型                        | 说明                |
| --------------------------- | ----------------- |
| [RouterState](#routerstate) | 详细请参见RouterState。 |
Z
zengyawen 已提交
259 260 261

**示例:**

H
HelloCrease 已提交
262
```js
Z
zengyawen 已提交
263 264 265 266 267 268 269 270 271 272 273 274
export default {     
  getState() {        
    var page = router.getState();
    console.log('current index = ' + page.index);
    console.log('current name = ' + page.name);
    console.log('current path = ' + page.path);
  }
}
```

## router.enableAlertBeforeBackPage<sup>6+</sup>

275
enableAlertBeforeBackPage(options: EnableAlertBeforeBackPageOptions): void
Z
zengyawen 已提交
276 277 278 279 280 281 282

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

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

**参数:**

H
HelloCrease 已提交
283 284
| 参数名     | 类型                                       | 必填   | 说明                                     |
| ------- | ---------------------------------------- | ---- | -------------------------------------- |
285
| options | [EnableAlertBeforeBackPageOptions](#enablealertbeforebackpageoptions6) | 是    | 详细请参见EnableAlertBeforeBackPageOptions。 |
Z
zengyawen 已提交
286 287 288

**示例:**

H
HelloCrease 已提交
289
```js
Z
zengyawen 已提交
290 291 292 293 294 295 296
export default {    
  enableAlertBeforeBackPage() {        
    router.enableAlertBeforeBackPage({            
      message: 'Message Info',            
      success: function() {                
        console.log('success');            
      },            
H
HelloCrease 已提交
297 298
      cancel: function() {                
        console.log('cancel');            
Z
zengyawen 已提交
299 300 301 302 303 304 305 306
      },        
    });    
  }
}
```

## router.disableAlertBeforeBackPage<sup>6+</sup>

307
disableAlertBeforeBackPage(options?: DisableAlertBeforeBackPageOptions): void
Z
zengyawen 已提交
308 309 310 311 312 313 314

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

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

**参数:**

H
HelloCrease 已提交
315 316 317
| 参数名     | 类型                                       | 必填   | 说明                                      |
| ------- | ---------------------------------------- | ---- | --------------------------------------- |
| options | [DisableAlertBeforeBackPageOptions](#disablealertbeforebackpageoptions6) | 否    | 详细请参见DisableAlertBeforeBackPageOptions。 |
Z
zengyawen 已提交
318 319 320

**示例:**

H
HelloCrease 已提交
321
```js
Z
zengyawen 已提交
322 323 324 325 326 327
export default {    
  disableAlertBeforeBackPage() {        
    router.disableAlertBeforeBackPage({            
      success: function() {                
        console.log('success');            
      },            
H
HelloCrease 已提交
328 329
      cancel: function() {                
        console.log('cancel');            
Z
zengyawen 已提交
330 331 332 333 334 335
      },        
    });    
  }
}
```

336 337 338 339 340 341
## RouterOptions

定义路由器的选项。

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

H
HelloCrease 已提交
342 343 344 345
| 名称     | 参数类型   | 必填   | 说明                                       |
| ------ | ------ | ---- | ---------------------------------------- |
| uri    | string | 是    | 目标页面的uri,可以是以下的两种格式:<br/>1. 页面的绝对路径,由config.json文件中的页面列表提供。例如:<br/>- pages/index/index<br/> -pages/detail/detail<br/>2. 特定路径。如果URI为斜杠(/),则显示主页。 |
| params | Object | 否    | 跳转时要同时传递到目标页面的数据,跳转到目标页面后,参数可以在页面中直接使用,如this.data1(data1为跳转时params参数中的key值)。如果目标页面中已有该字段,则其值会被传入的字段值覆盖。 |
346 347 348 349 350 351 352 353


## BackRouterOptions

定义路由器返回的选项。

**系统能力:**  以下各项对应的系统能力有所不同,详见下表。

H
HelloCrease 已提交
354 355 356 357
| 名称     | 参数类型   | 必填   | 说明                                       |
| ------ | ------ | ---- | ---------------------------------------- |
| uri    | string | 否    | 返回到指定uri的界面,如果页面栈上没有uri页面,则不响应该情况。如果uri未设置,则返回上一页。 <br>**系统能力:** SystemCapability.ArkUI.ArkUI.Full |
| params | Object | 否    | 跳转时要同时传递到目标页面的数据。 <br>**系统能力:** SystemCapability.ArkUI.ArkUI.Lite |
358 359 360 361 362 363 364

## RouterState

定义路由器的状态。

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

H
HelloCrease 已提交
365 366 367 368 369
| 名称    | 参数类型   | 必填   | 说明                                 |
| ----- | ------ | ---- | ---------------------------------- |
| index | number | 是    | 表示当前页面在页面栈中的索引。从栈底到栈顶,index从1开始递增。 |
| name  | string | 是    | 表示当前页面的名称,即对应文件名。                  |
| path  | string | 是    | 表示当前页面的路径。                         |
370 371 372

## EnableAlertBeforeBackPageOptions<sup>6+</sup>

373
定义EnableAlertBeforeBackPage选项。
374 375 376

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

H
HelloCrease 已提交
377 378 379 380 381 382
| 名称       | 参数类型                     | 必填   | 说明                        |
| -------- | ------------------------ | ---- | ------------------------- |
| message  | string                   | 是    | 询问对话框内容。                  |
| success  | (errMsg: string) => void | 否    | 弹出对话框时调用,errMsg表示返回信息。    |
| fail     | (errMsg: string) => void | 否    | 接口调用失败的回调函数,errMsg表示返回信息。 |
| complete | () => void               | 否    | 接口调用结束的回调函数。              |
383 384 385 386 387 388 389

## DisableAlertBeforeBackPageOptions<sup>6+</sup>

定义DisableAlertBeforeBackPage参数选项。

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

H
HelloCrease 已提交
390 391 392 393 394
| 名称       | 参数类型                     | 必填   | 说明                        |
| -------- | ------------------------ | ---- | ------------------------- |
| success  | (errMsg: string) => void | 否    | 弹出对话框时调用,errMsg表示返回信息。    |
| fail     | (errMsg: string) => void | 否    | 接口调用失败的回调函数,errMsg表示返回信息。 |
| complete | () => void               | 否    | 接口调用结束的回调函数。              |
395 396 397

## ParamsInterface

H
HelloCrease 已提交
398 399 400
| 名称            | 参数类型   | 说明      |
| ------------- | ------ | ------- |
| [key: string] | Object | 路由参数列表。 |