js-apis-router.md 33.0 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.router (页面路由)
K
kukixi 已提交
2

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

5
> **说明**
K
kukixi 已提交
6 7
>
> - 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
H
HelloCrease 已提交
8
>
K
kukixi 已提交
9
> - 页面路由需要在页面渲染完成之后才能调用,在onInit和onReady生命周期中页面还处于渲染阶段,禁止调用页面路由方法。
H
huangdong57 已提交
10 11 12 13
>
> - 本模块功能依赖UI的执行上下文,不可在UI上下文不明确的地方使用,参见[UIContext](./js-apis-arkui-UIContext.md#uicontext)说明。
>
> - 从API version 10开始,可以通过使用[UIContext](./js-apis-arkui-UIContext.md#uicontext)中的[getRouter](./js-apis-arkui-UIContext.md#getrouter)方法获取当前UI上下文关联的[Router](./js-apis-arkui-UIContext.md#router)对象。
H
huzeqi 已提交
14 15
>
> - 为了实现更好的转场效果,推荐使用[Navigation组件](../../ui/arkts-navigation-navigation.md)和[模态转场](../../ui/arkts-modal-transition.md)。
K
kukixi 已提交
16 17 18 19 20 21 22

## 导入模块

```
import router from '@ohos.router'
```

Z
zhaoxinyu 已提交
23
## router.pushUrl<sup>9+</sup>
K
kukixi 已提交
24

Z
zhaoxinyu 已提交
25
pushUrl(options: RouterOptions): Promise&lt;void&gt;
K
kukixi 已提交
26 27 28 29 30 31

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

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

**参数:**
Z
zhaoxinyu 已提交
32

H
HelloCrease 已提交
33 34 35
| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。 |
K
kukixi 已提交
36

Z
zhaoxinyu 已提交
37 38 39 40
**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
Y
yamila 已提交
41
| Promise&lt;void&gt; | 异常返回结果。 |
Z
zhaoxinyu 已提交
42 43 44 45 46

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

47
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
48
| --------- | ------- |
L
luoying_ace_admin 已提交
49 50 51
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
K
kukixi 已提交
52 53

**示例:**
Z
zhaoxinyu 已提交
54

H
huzeqi 已提交
55
```ts
Y
yamila 已提交
56 57 58 59 60 61 62 63
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
L
luoying_ace_admin 已提交
64
    }
Z
zhaoxinyu 已提交
65
  })
Y
yamila 已提交
66 67 68
} catch (err) {
  console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
}
69
```
70

Z
zhaoxinyu 已提交
71 72 73
## router.pushUrl<sup>9+</sup>

pushUrl(options: RouterOptions, callback: AsyncCallback&lt;void&gt;): void
74 75 76 77 78 79

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

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

**参数:**
Z
zhaoxinyu 已提交
80 81 82 83

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。 |
Y
yamila 已提交
84
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |
Z
zhaoxinyu 已提交
85 86 87 88 89

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

90
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
91
| --------- | ------- |
L
luoying_ace_admin 已提交
92 93 94
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
Z
zhaoxinyu 已提交
95 96 97

**示例:**

H
huzeqi 已提交
98
```ts
Y
yamila 已提交
99 100 101 102 103 104
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
L
luoying_ace_admin 已提交
105
    }
Y
yamila 已提交
106
  }
Y
yamila 已提交
107 108
}, (err) => {
  if (err) {
Y
yamila 已提交
109
    console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
Y
yamila 已提交
110 111 112 113
    return;
  }
  console.info('pushUrl success');
})
Z
zhaoxinyu 已提交
114 115 116 117 118 119 120 121 122 123 124
```
## router.pushUrl<sup>9+</sup>

pushUrl(options: RouterOptions, mode: RouterMode): Promise&lt;void&gt;

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

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

**参数:**

H
HelloCrease 已提交
125 126 127 128
| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
129

Z
zhaoxinyu 已提交
130 131 132 133
**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
Y
yamila 已提交
134
| Promise&lt;void&gt; | 异常返回结果。 |
Z
zhaoxinyu 已提交
135 136 137 138 139

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

140
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
141
| --------- | ------- |
L
luoying_ace_admin 已提交
142 143 144
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
145 146

**示例:**
Z
zhaoxinyu 已提交
147

H
huzeqi 已提交
148
```ts
Y
yamila 已提交
149 150 151 152 153 154 155 156
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
L
luoying_ace_admin 已提交
157
    }
Y
yamila 已提交
158 159 160 161
  }, router.RouterMode.Standard)
} catch (err) {
  console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
}
162
```
K
kukixi 已提交
163

Z
zhaoxinyu 已提交
164
## router.pushUrl<sup>9+</sup>
K
kukixi 已提交
165

Z
zhaoxinyu 已提交
166
pushUrl(options: RouterOptions, mode: RouterMode, callback: AsyncCallback&lt;void&gt;): void
K
kukixi 已提交
167

Z
zhaoxinyu 已提交
168
跳转到应用内的指定页面。
K
kukixi 已提交
169 170 171 172

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

**参数:**
T
tianyu 已提交
173

Z
zhaoxinyu 已提交
174 175 176 177
| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
Y
yamila 已提交
178
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |
Z
zhaoxinyu 已提交
179 180 181 182 183

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

184
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
185
| --------- | ------- |
L
luoying_ace_admin 已提交
186 187 188
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
Z
zhaoxinyu 已提交
189 190 191

**示例:**

H
huzeqi 已提交
192
```ts
Y
yamila 已提交
193 194 195 196 197 198
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
Z
zhaoxinyu 已提交
199
    }
Y
yamila 已提交
200 201 202 203 204 205 206 207
  }
}, router.RouterMode.Standard, (err) => {
  if (err) {
    console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('pushUrl success');
})
Z
zhaoxinyu 已提交
208 209 210 211 212 213 214 215 216 217 218 219
```

## router.replaceUrl<sup>9+</sup>

replaceUrl(options: RouterOptions): Promise&lt;void&gt;

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

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

**参数:**

220 221 222
| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | 是   | 替换页面描述信息。 |
K
kukixi 已提交
223

Z
zhaoxinyu 已提交
224 225 226 227
**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
Y
yamila 已提交
228
| Promise&lt;void&gt; | 异常返回结果。 |
Z
zhaoxinyu 已提交
229 230 231 232 233

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

234
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
235
| --------- | ------- |
L
luoying_ace_admin 已提交
236 237
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
Z
zhaoxinyu 已提交
238

K
kukixi 已提交
239
**示例:**
G
gmy 已提交
240

H
huzeqi 已提交
241
```ts
Y
yamila 已提交
242 243 244 245 246 247
try {
  router.replaceUrl({
    url: 'pages/detail',
    params: {
      data1: 'message'
    }
Z
zhaoxinyu 已提交
248
  })
Y
yamila 已提交
249 250 251
} catch (err) {
  console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
}
252
```
K
kukixi 已提交
253

Z
zhaoxinyu 已提交
254
## router.replaceUrl<sup>9+</sup>
255

Z
zhaoxinyu 已提交
256
replaceUrl(options: RouterOptions, callback: AsyncCallback&lt;void&gt;): void
257 258 259

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

Z
zhaoxinyu 已提交
260
**系统能力:** SystemCapability.ArkUI.ArkUI.Lite
261 262

**参数:**
Z
zhaoxinyu 已提交
263 264 265 266

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | 是   | 替换页面描述信息。 |
Y
yamila 已提交
267
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |
Z
zhaoxinyu 已提交
268 269 270 271 272

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

273
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
274
| --------- | ------- |
L
luoying_ace_admin 已提交
275 276
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
Z
zhaoxinyu 已提交
277 278 279

**示例:**

H
huzeqi 已提交
280
```ts
Y
yamila 已提交
281 282 283 284 285 286 287 288 289 290 291 292
router.replaceUrl({
  url: 'pages/detail',
  params: {
    data1: 'message'
  }
}, (err) => {
  if (err) {
    console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('replaceUrl success');
})
Z
zhaoxinyu 已提交
293 294 295 296 297 298 299 300 301 302 303 304
```

## router.replaceUrl<sup>9+</sup>

replaceUrl(options: RouterOptions, mode: RouterMode): Promise&lt;void&gt;

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

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

**参数:**

H
HelloCrease 已提交
305 306 307 308
| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | 是    | 替换页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
309

Z
zhaoxinyu 已提交
310 311 312 313 314

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
Y
yamila 已提交
315
| Promise&lt;void&gt; | 异常返回结果。 |
Z
zhaoxinyu 已提交
316 317 318 319 320

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

321
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
322
| --------- | ------- |
Y
yamila 已提交
323
| 100001    | if can not get the delegate, only throw in standard system. |
L
luoying_ace_admin 已提交
324
| 200002    | if the uri is not exist. |
Z
zhaoxinyu 已提交
325

326 327
**示例:**

H
huzeqi 已提交
328
```ts
Y
yamila 已提交
329 330 331 332 333 334 335 336 337 338
try {
  router.replaceUrl({
    url: 'pages/detail',
    params: {
      data1: 'message'
    }
  }, router.RouterMode.Standard)
} catch (err) {
  console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
}
Z
zhaoxinyu 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
```

## router.replaceUrl<sup>9+</sup>

replaceUrl(options: RouterOptions, mode: RouterMode, callback: AsyncCallback&lt;void&gt;): void

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | 是    | 替换页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
Y
yamila 已提交
355
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |
Z
zhaoxinyu 已提交
356 357 358 359 360

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

361
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
362
| --------- | ------- |
Y
yamila 已提交
363
| 100001    | if UI execution context not found, only throw in standard system. |
L
luoying_ace_admin 已提交
364
| 200002    | if the uri is not exist. |
Z
zhaoxinyu 已提交
365 366 367

**示例:**

H
huzeqi 已提交
368
```ts
Y
yamila 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381
router.replaceUrl({
  url: 'pages/detail',
  params: {
    data1: 'message'
  }
}, router.RouterMode.Standard, (err) => {
  if (err) {
    console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('replaceUrl success');
});

382
```
K
kukixi 已提交
383

H
huzeqi 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
## router.pushNamedRoute<sup>10+</sup>

pushNamedRoute(options: NamedRouterOptions): Promise&lt;void&gt;

跳转到指定的命名路由页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 跳转页面描述信息。 |

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| Promise&lt;void&gt; | 异常返回结果。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |
| 100003    | if the pages are pushed too much. |
| 100004    | if the named route is not exist. |

Y
yamila 已提交
414
**示例:** 
H
huzeqi 已提交
415 416

```ts
Y
yamila 已提交
417 418 419 420 421 422 423 424
try {
  router.pushNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huzeqi 已提交
425 426
    }
  })
Y
yamila 已提交
427 428 429
} catch (err) {
  console.error(`pushNamedRoute failed, code is ${err.code}, message is ${err.message}`);
}
H
huzeqi 已提交
430 431
```

Y
yamila 已提交
432 433
详细示例请参考:[UI开发-页面路由](../../ui/arkts-routing.md#命名路由)

H
huzeqi 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
## router.pushNamedRoute<sup>10+</sup>

pushNamedRoute(options: NamedRouterOptions, callback: AsyncCallback&lt;void&gt;): void

跳转到指定的命名路由页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 跳转页面描述信息。 |
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |
| 100003    | if the pages are pushed too much. |
| 100004    | if the named route is not exist. |

**示例:**

```ts
router.pushNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
}, (err) => {
  if (err) {
    console.error(`pushNamedRoute failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('pushNamedRoute success');
})
```
## router.pushNamedRoute<sup>10+</sup>

pushNamedRoute(options: NamedRouterOptions, mode: RouterMode): Promise&lt;void&gt;

跳转到指定的命名路由页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 跳转页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| Promise&lt;void&gt; | 异常返回结果。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |
| 100003    | if the pages are pushed too much. |
| 100004    | if the named route is not exist. |

**示例:**

```ts
Y
yamila 已提交
512 513 514 515 516 517 518 519
try {
  router.pushNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huzeqi 已提交
520
    }
Y
yamila 已提交
521 522 523 524
  }, router.RouterMode.Standard)
} catch (err) {
  console.error(`pushNamedRoute failed, code is ${err.code}, message is ${err.message}`);
}
H
huzeqi 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
```

## router.pushNamedRoute<sup>10+</sup>

pushNamedRoute(options: NamedRouterOptions, mode: RouterMode, callback: AsyncCallback&lt;void&gt;): void

跳转到指定的命名路由页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 跳转页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |
| 100003    | if the pages are pushed too much. |
| 100004    | if the named route is not exist. |

**示例:**

```ts
router.pushNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
}, router.RouterMode.Standard, (err) => {
  if (err) {
    console.error(`pushNamedRoute failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('pushNamedRoute success');
})
```

## router.replaceNamedRoute<sup>10+</sup>

replaceNamedRoute(options: NamedRouterOptions): Promise&lt;void&gt;

用指定的命名路由页面替换当前页面,并销毁被替换的页面。

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是   | 替换页面描述信息。 |

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| Promise&lt;void&gt; | 异常返回结果。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
599
| 100001    | if UI execution context not found, only throw in standard system. |
H
huzeqi 已提交
600 601 602 603 604
| 100004    | if the named route is not exist. |

**示例:**

```ts
Y
yamila 已提交
605 606 607 608 609 610
try {
  router.replaceNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message'
    }
H
huzeqi 已提交
611
  })
Y
yamila 已提交
612 613 614
} catch (err) {
  console.error(`replaceNamedRoute failed, code is ${err.code}, message is ${err.message}`);
}
H
huzeqi 已提交
615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
```

## router.replaceNamedRoute<sup>10+</sup>

replaceNamedRoute(options: NamedRouterOptions, callback: AsyncCallback&lt;void&gt;): void

用指定的命名路由页面替换当前页面,并销毁被替换的页面。

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是   | 替换页面描述信息。 |
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
638
| 100001    | if UI execution context not found, only throw in standard system. |
H
huzeqi 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
| 100004    | if the named route is not exist. |

**示例:**

```ts
router.replaceNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message'
  }
}, (err) => {
  if (err) {
    console.error(`replaceNamedRoute failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('replaceNamedRoute success');
})
```

## router.replaceNamedRoute<sup>10+</sup>

replaceNamedRoute(options: NamedRouterOptions, mode: RouterMode): Promise&lt;void&gt;

用指定的命名路由页面替换当前页面,并销毁被替换的页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 替换页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |


**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| Promise&lt;void&gt; | 异常返回结果。 |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
686
| 100001    | if can not get the delegate, only throw in standard system. |
H
huzeqi 已提交
687 688 689 690 691
| 100004    | if the named route is not exist. |

**示例:**

```ts
Y
yamila 已提交
692 693 694 695 696 697 698 699 700 701
try {
  router.replaceNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message'
    }
  }, router.RouterMode.Standard)
} catch (err) {
  console.error(`replaceNamedRoute failed, code is ${err.code}, message is ${err.message}`);
}
H
huzeqi 已提交
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
```

## router.replaceNamedRoute<sup>10+</sup>

replaceNamedRoute(options: NamedRouterOptions, mode: RouterMode, callback: AsyncCallback&lt;void&gt;): void

用指定的命名路由页面替换当前页面,并销毁被替换的页面。

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [NamedRouterOptions](#namedrouteroptions10) | 是    | 替换页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
726
| 100001    | if UI execution context not found, only throw in standard system. |
H
huzeqi 已提交
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
| 100004    | if the named route is not exist. |

**示例:**

```ts
router.replaceNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message'
  }
}, router.RouterMode.Standard, (err) => {
  if (err) {
    console.error(`replaceNamedRoute failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('replaceNamedRoute success');
});

```

K
kukixi 已提交
747 748 749 750 751 752 753 754 755
## router.back

back(options?: RouterOptions ): void

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

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

**参数:**
Z
zhaoxinyu 已提交
756

757 758
| 参数名  | 类型                            | 必填 | 说明                                                         |
| ------- | ------------------------------- | ---- | ------------------------------------------------------------ |
Y
yamila 已提交
759
| options | [RouterOptions](#routeroptions) | 否   | 返回页面描述信息,其中参数url指路由跳转时会返回到指定url的界面,如果页面栈上没有url页面,则不响应该情况。如果url未设置,则返回上一页,页面不会重新构建,页面栈里面的page不会回收,出栈后会被回收。 |
K
kukixi 已提交
760 761 762

**示例:**

H
huzeqi 已提交
763
```ts
T
tianyu 已提交
764
router.back({url:'pages/detail'});    
765
```
K
kukixi 已提交
766 767 768 769 770 771 772 773 774 775

## router.clear

clear(): void

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

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

**示例:**
776

H
huzeqi 已提交
777
```ts
778
router.clear();    
779
```
K
kukixi 已提交
780 781 782 783 784 785 786

## router.getLength

getLength(): string

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

L
luoying_ace_admin 已提交
787 788
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

K
kukixi 已提交
789
**返回值:**
Z
zhaoxinyu 已提交
790

H
HelloCrease 已提交
791 792
| 类型     | 说明                 |
| ------ | ------------------ |
G
gmy 已提交
793
| string | 页面数量,页面栈支持最大数值是32。 |
K
kukixi 已提交
794 795

**示例:**
Z
zhaoxinyu 已提交
796

H
huzeqi 已提交
797
```ts
L
luoying_ace_admin 已提交
798
let size = router.getLength();        
799
console.log('pages stack size = ' + size);    
800
```
K
kukixi 已提交
801 802 803 804 805 806 807 808 809 810 811

## router.getState

getState(): RouterState

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

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

**返回值:**

H
HelloCrease 已提交
812 813
| 类型                          | 说明      |
| --------------------------- | ------- |
814
| [RouterState](#routerstate) | 页面状态信息。 |
815

816 817
**示例:** 

H
huzeqi 已提交
818
```ts
L
luoying_ace_admin 已提交
819
let page = router.getState();
820 821 822 823 824
console.log('current index = ' + page.index);
console.log('current name = ' + page.name);
console.log('current path = ' + page.path);
```

K
kukixi 已提交
825 826
## RouterState

827
页面状态信息。
K
kukixi 已提交
828

829
**系统能力:** SystemCapability.ArkUI.ArkUI.Full。
K
kukixi 已提交
830

Y
yamila 已提交
831 832 833 834 835
| 名称  | 类型   | 必填 | 说明                                                         |
| ----- | ------ | ---- | ------------------------------------------------------------ |
| index | number | 是   | 表示当前页面在页面栈中的索引。从栈底到栈顶,index从1开始递增。 |
| name  | string | 否   | 表示当前页面的名称,即对应文件名。                           |
| path  | string | 是   | 表示当前页面的路径。                                         |
K
kukixi 已提交
836

Z
zhaoxinyu 已提交
837
## router.showAlertBeforeBackPage<sup>9+</sup>
K
kukixi 已提交
838

Z
zhaoxinyu 已提交
839
showAlertBeforeBackPage(options: EnableAlertOptions): void
K
kukixi 已提交
840 841 842 843 844 845

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

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

**参数:**
Z
zhaoxinyu 已提交
846

H
HelloCrease 已提交
847 848 849
| 参数名     | 类型                                       | 必填   | 说明        |
| ------- | ---------------------------------------- | ---- | --------- |
| options | [EnableAlertOptions](#enablealertoptions) | 是    | 文本弹窗信息描述。 |
K
kukixi 已提交
850

Z
zhaoxinyu 已提交
851 852 853 854
**错误码:**

以下错误码的详细介绍请参见[ohos.router(页面路由)](../errorcodes/errorcode-router.md)错误码。

855
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
856
| --------- | ------- |
L
luoying_ace_admin 已提交
857
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
858

K
kukixi 已提交
859 860
**示例:**

H
huzeqi 已提交
861
```ts
Z
zhaoxinyu 已提交
862
try {
H
huzeqi 已提交
863 864
  router.showAlertBeforeBackPage({
    message: 'Message Info'
Z
zhaoxinyu 已提交
865 866
  });
} catch(error) {
Z
zhaoxinyu 已提交
867
  console.error(`showAlertBeforeBackPage failed, code is ${error.code}, message is ${error.message}`);
Z
zhaoxinyu 已提交
868
}
H
huzeqi 已提交
869
```
K
kukixi 已提交
870 871
## EnableAlertOptions

K
kukixi 已提交
872 873
页面返回询问对话框选项。

L
luoying_ace_admin 已提交
874
**系统能力:** 以下各项对应的系统能力均为SystemCapability.ArkUI.ArkUI.Full。
K
kukixi 已提交
875

H
HelloCrease 已提交
876 877 878
| 名称      | 类型     | 必填   | 说明       |
| ------- | ------ | ---- | -------- |
| message | string | 是    | 询问对话框内容。 |
K
kukixi 已提交
879

Z
zhaoxinyu 已提交
880
## router.hideAlertBeforeBackPage<sup>9+</sup>
K
kukixi 已提交
881

Z
zhaoxinyu 已提交
882
hideAlertBeforeBackPage(): void
K
kukixi 已提交
883 884 885 886 887 888

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

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

**示例:**
Z
zhaoxinyu 已提交
889

H
huzeqi 已提交
890
```ts
Z
zhaoxinyu 已提交
891
router.hideAlertBeforeBackPage();    
892
```
K
kukixi 已提交
893 894 895 896 897 898 899 900 901 902 903

##  router.getParams

getParams(): Object

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

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

**返回值:**

Y
yamila 已提交
904 905 906
| 类型   | 说明                               |
| ------ | ---------------------------------- |
| object | 发起跳转的页面往当前页传入的参数。 |
K
kukixi 已提交
907

K
kukixi 已提交
908 909
**示例:**

910 911 912
```
router.getParams();
```
K
kukixi 已提交
913 914 915 916 917

## RouterOptions

路由跳转选项。

918
**系统能力:** SystemCapability.ArkUI.ArkUI.Lite。
K
kukixi 已提交
919

T
tianyu 已提交
920 921 922
| 名称   | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| url    | string | 是   | 表示目标页面的url,可以用以下两种格式:<br/>-&nbsp;页面绝对路径,由配置文件中pages列表提供,例如:<br/>&nbsp;&nbsp;-&nbsp;pages/index/index<br/>&nbsp;&nbsp;-&nbsp;pages/detail/detail<br/>-&nbsp;特殊值,如果url的值是"/",则跳转到首页。 |
Y
yamila 已提交
923
| params | object | 否   | 表示路由跳转时要同时传递到目标页面的数据,切换到其他页面时,当前接收的数据失效。跳转到目标页面后,使用router.getParams()获取传递的参数,此外,在类web范式中,参数也可以在页面中直接使用,如this.keyValue(keyValue为跳转时params参数中的key值),如果目标页面中已有该字段,则其值会被传入的字段值覆盖。<br/>**说明:** <br/>params参数不能传递方法和系统接口返回的对象(例如,媒体接口定义和返回的PixelMap对象)。建议开发者提取系统接口返回的对象中需要被传递的基础类型属性,自行构造object类型对象进行传递。 |
K
kukixi 已提交
924 925


926
  > **说明:**
K
kukixi 已提交
927 928
  > 页面路由栈支持的最大Page数量为32。

H
huzeqi 已提交
929 930 931 932
## RouterMode<sup>9+</sup>

路由跳转模式。

933
**系统能力:** SystemCapability.ArkUI.ArkUI.Full。
934

Y
yamila 已提交
935 936
| 名称     | 说明                                                         |
| -------- | ------------------------------------------------------------ |
937 938
| Standard | 多实例模式,也是默认情况下的跳转模式。 <br/>目标页面会被添加到页面栈顶,无论栈中是否存在相同url的页面。<br/>**说明:** 不使用路由跳转模式时,则按照默认的多实例模式进行跳转。 |
| Single   | 单实例模式。<br/>如果目标页面的url已经存在于页面栈中,则会将离栈顶最近的同url页面移动到栈顶,该页面成为新建页。<br />如果目标页面的url在页面栈中不存在同url页面,则按照默认的多实例模式进行跳转。 |
939

H
huzeqi 已提交
940 941 942 943 944 945 946 947 948 949 950
## NamedRouterOptions<sup>10+</sup>

命名路由跳转选项。

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

| 名称   | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| name   | string | 是   | 表示目标命名路由页面的name。 |
| params | object | 否   | 表示路由跳转时要同时传递到目标页面的数据。跳转到目标页面后,使用router.getParams()获取传递的参数,此外,在类web范式中,参数也可以在页面中直接使用,如this.keyValue(keyValue为跳转时params参数中的key值),如果目标页面中已有该字段,则其值会被传入的字段值覆盖。 |

951 952 953 954
## 完整示例

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

H
huzeqi 已提交
955
```ts
956 957 958 959 960 961
// 在当前页面中
export default {
  pushPage() {
    router.push({
      url: 'pages/detail/detail',
      params: {
L
luoying_ace_admin 已提交
962 963
        data1: 'message'
      }
964 965 966 967
    });
  }
}
```
H
huzeqi 已提交
968
```ts
969 970 971
// 在detail页面中
export default {
  onInit() {
Y
yamila 已提交
972
    console.info('showData1:' + router.getParams()['data1']);
973 974 975 976 977
  }
}
```

### 基于TS扩展的声明式开发范式
H
huzeqi 已提交
978

979
```ts
Y
yamila 已提交
980
// 通过router.pushUrl跳转至目标页携带params参数
981 982 983 984 985
import router from '@ohos.router'

@Entry
@Component
struct Index {
Y
yamila 已提交
986
  async routePage() {
987 988 989 990 991 992
    let options = {
      url: 'pages/second',
      params: {
        text: '这是第一页的值',
        data: {
          array: [12, 45, 78]
L
luoying_ace_admin 已提交
993
        }
994 995 996
      }
    }
    try {
Y
yamila 已提交
997
      await router.pushUrl(options)
998 999 1000 1001 1002 1003 1004
    } catch (err) {
      console.info(` fail callback, code: ${err.code}, msg: ${err.msg}`)
    }
  }

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
Y
yamila 已提交
1005 1006 1007
      Text('这是第一页')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
1008 1009 1010 1011 1012
      Button() {
        Text('next page')
          .fontSize(25)
          .fontWeight(FontWeight.Bold)
      }.type(ButtonType.Capsule)
Y
yamila 已提交
1013 1014 1015 1016
      .margin({ top: 20 })
      .backgroundColor('#ccc')
      .onClick(() => {
        this.routePage()
1017 1018 1019 1020 1021 1022 1023 1024 1025
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

```ts
Y
yamila 已提交
1026
// 在second页面中接收传递过来的参数
1027 1028 1029 1030 1031 1032 1033
import router from '@ohos.router'

@Entry
@Component
struct Second {
  private content: string = "这是第二页"
  @State text: string = router.getParams()['text']
Y
yamila 已提交
1034
  @State data: object = router.getParams()['data']
Y
yamila 已提交
1035 1036
  @State secondData: string = ''

1037 1038 1039 1040 1041 1042 1043
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Text(`${this.content}`)
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
      Text(this.text)
        .fontSize(30)
Y
yamila 已提交
1044
        .onClick(() => {
Y
yamila 已提交
1045
          this.secondData = (this.data['array'][1]).toString()
1046
        })
Y
yamila 已提交
1047
        .margin({ top: 20 })
Y
yamila 已提交
1048
      Text(`第一页传来的数值:${this.secondData}`)
1049
        .fontSize(20)
Y
yamila 已提交
1050 1051
        .margin({ top: 20 })
        .backgroundColor('red')
1052 1053 1054 1055 1056
    }
    .width('100%')
    .height('100%')
  }
}
Z
zhaoxinyu 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
```

## router.push<sup>(deprecated)</sup>

push(options: RouterOptions): void

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

从API version9开始不再维护,建议使用[pushUrl<sup>9+</sup>](#routerpushurl9)

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。 |


**示例:**

H
huzeqi 已提交
1078
```ts
Z
zhaoxinyu 已提交
1079 1080 1081 1082 1083 1084
router.push({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
L
luoying_ace_admin 已提交
1085 1086
    }
  }
Z
zhaoxinyu 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
});
```

## router.replace<sup>(deprecated)</sup>

replace(options: RouterOptions): void

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

从API version9开始不再维护,建议使用[replaceUrl<sup>9+</sup>](#routerreplaceurl9)

L
luoying_ace_admin 已提交
1098
**系统能力:** SystemCapability.ArkUI.ArkUI.Lite
Z
zhaoxinyu 已提交
1099 1100 1101 1102 1103 1104 1105 1106 1107

**参数:**

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | 是   | 替换页面描述信息。 |

**示例:**

H
huzeqi 已提交
1108
```ts
Z
zhaoxinyu 已提交
1109 1110 1111
router.replace({
  url: 'pages/detail',
  params: {
L
luoying_ace_admin 已提交
1112 1113
    data1: 'message'
  }
Z
zhaoxinyu 已提交
1114 1115 1116 1117 1118 1119 1120 1121 1122
});
```

## router.enableAlertBeforeBackPage<sup>(deprecated)</sup>

enableAlertBeforeBackPage(options: EnableAlertOptions): void

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

Z
zhaoxinyu 已提交
1123
从API version9开始不再维护,建议使用[showAlertBeforeBackPage<sup>9+</sup>](#routershowalertbeforebackpage9)
Z
zhaoxinyu 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134

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

**参数:**

| 参数名     | 类型                                       | 必填   | 说明        |
| ------- | ---------------------------------------- | ---- | --------- |
| options | [EnableAlertOptions](#enablealertoptions) | 是    | 文本弹窗信息描述。 |

**示例:**

H
huzeqi 已提交
1135 1136 1137 1138 1139
```ts
router.enableAlertBeforeBackPage({
  message: 'Message Info'
});
```
Z
zhaoxinyu 已提交
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152

## router.disableAlertBeforeBackPage<sup>(deprecated)</sup>

disableAlertBeforeBackPage(): void

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

从API version9开始不再维护,建议使用[hideAlertBeforeBackPage<sup>9+</sup>](#routerhidealertbeforebackpage9)

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

**示例:**

H
huzeqi 已提交
1153 1154
```ts
router.disableAlertBeforeBackPage();
Z
zhaoxinyu 已提交
1155
```