js-apis-router.md 23.0 KB
Newer Older
K
kukixi 已提交
1 2
# 页面路由

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

5
> **说明**
K
kukixi 已提交
6 7
>
> - 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
H
HelloCrease 已提交
8
>
K
kukixi 已提交
9
> - 页面路由需要在页面渲染完成之后才能调用,在onInit和onReady生命周期中页面还处于渲染阶段,禁止调用页面路由方法。
K
kukixi 已提交
10 11 12 13 14 15 16

## 导入模块

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

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

Z
zhaoxinyu 已提交
19
pushUrl(options: RouterOptions): Promise&lt;void&gt;
K
kukixi 已提交
20 21 22 23 24 25

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

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

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

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

Z
zhaoxinyu 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 100002    | Uri error. The uri of router is not exist. |
| 100003    | Page stack error. The pages are pushed too much. |
K
kukixi 已提交
46 47

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

49
```js
Z
zhaoxinyu 已提交
50 51 52 53 54 55 56 57
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      },
58
    },
Z
zhaoxinyu 已提交
59 60 61 62 63 64 65 66 67 68
  })
    .then(() => {
      // success
    })
    .catch(err => {
      console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
    })
} catch (error) {
  console.error(`pushUrl args error code is ${error.code}, message is ${error.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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 100002    | Uri error. The uri of router is not exist. |
| 100003    | Page stack error. The pages are pushed too much. |

**示例:**

```js
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      },
    },
  }, (err) => {
    if (err) {
      console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
      return;
    }
    console.info('pushUrl success');
  });
} catch (error) {
  console.error(`pushUrl args error code is ${error.code}, message is ${error.message}`);
};
```
## router.pushUrl<sup>9+</sup>

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

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

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

**参数:**

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

Z
zhaoxinyu 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 100002    | Uri error. The uri of router is not exist. |
| 100003    | Page stack error. The pages are pushed too much. |
149 150

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

152
```js
Z
zhaoxinyu 已提交
153 154 155 156 157 158 159 160
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      },
K
kukixi 已提交
161
    },
Z
zhaoxinyu 已提交
162 163 164 165 166 167 168 169 170 171
  }, router.RouterMode.Standard)
    .then(() => {
      // success
    })
    .catch(err => {
      console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
    })
} catch (error) {
  console.error(`pushUrl args error code is ${error.code}, message is ${error.message}`);
};
172
```
K
kukixi 已提交
173

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

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

Z
zhaoxinyu 已提交
178
跳转到应用内的指定页面。
K
kukixi 已提交
179 180 181 182

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

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

Z
zhaoxinyu 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | 是    | 跳转页面描述信息。  |
| mode    | [RouterMode](#routermode9)      | 是    | 跳转页面使用的模式。 |
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调    |

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 100002    | Uri error. The uri of router is not exist. |
| 100003    | Page stack error. The pages are pushed too much. |

**示例:**

```js
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      },
    },
  }, router.RouterMode.Standard, (err) => {
    if (err) {
      console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
      return;
    }
    console.info('pushUrl success');
  });
} catch (error) {
  console.error(`pushUrl args error code is ${error.code}, message is ${error.message}`);
};
```

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

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

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

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

**参数:**

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

Z
zhaoxinyu 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 200002    | Uri error. The uri of router is not exist. |

K
kukixi 已提交
253
**示例:**
G
gmy 已提交
254

255
```js
Z
zhaoxinyu 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
try {
  router.replaceUrl({
    url: 'pages/detail',
    params: {
      data1: 'message',
    },
  })
    .then(() => {
      // success
    })
    .catch(err => {
      console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
    })
} catch (error) {
  console.error(`replaceUrl args error code is ${error.code}, message is ${error.message}`);
};
272
```
K
kukixi 已提交
273

Z
zhaoxinyu 已提交
274
## router.replaceUrl<sup>9+</sup>
275

Z
zhaoxinyu 已提交
276
replaceUrl(options: RouterOptions, callback: AsyncCallback&lt;void&gt;): void
277 278 279

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

Z
zhaoxinyu 已提交
280
**系统能力:** SystemCapability.ArkUI.ArkUI.Lite
281 282

**参数:**
Z
zhaoxinyu 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 200002    | Uri error. The uri of router is not exist. |

**示例:**

```js
try {
  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');
  });
} catch (error) {
  console.error(`replaceUrl args error code is ${error.code}, message is ${error.message}`);
};
```

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

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

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

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

**参数:**

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

Z
zhaoxinyu 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349

**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 200002    | Uri error. The uri of router is not exist. |

350 351
**示例:**

352
```js
Z
zhaoxinyu 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 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
try {
  router.replaceUrl({
    url: 'pages/detail',
    params: {
      data1: 'message',
    },
  }, router.RouterMode.Standard)
    .then(() => {
      // success
    })
    .catch(err => {
      console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
    })
} catch (error) {
  console.error(`replaceUrl args error code is ${error.code}, message is ${error.message}`);
};
```

## 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)      | 是    | 跳转页面使用的模式。 |

**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |
| 200002    | Uri error. The uri of router is not exist. |

**示例:**

```js
try {
  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');
  });
} catch (error) {
  console.error(`replaceUrl args error code is ${error.code}, message is ${error.message}`);
};
414
```
K
kukixi 已提交
415 416 417 418 419 420 421 422 423 424

## router.back

back(options?: RouterOptions ): void

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

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

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

426 427
| 参数名  | 类型                            | 必填 | 说明                                                         |
| ------- | ------------------------------- | ---- | ------------------------------------------------------------ |
T
tianyu 已提交
428
| options | [RouterOptions](#routeroptions) | 否   | 返回页面描述信息,其中参数url指路由跳转时会返回到指定url的界面,如果页面栈上没有url页面,则不响应该情况。如果url未设置,则返回上一页,页面栈里面的page不会回收,出栈后会被回收。 |
K
kukixi 已提交
429 430 431

**示例:**

432
```js
T
tianyu 已提交
433
router.back({url:'pages/detail'});    
434
```
K
kukixi 已提交
435 436 437 438 439 440 441 442 443 444

## router.clear

clear(): void

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

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

**示例:**
445

446
```js
447
router.clear();    
448
```
K
kukixi 已提交
449 450 451 452 453 454 455

## router.getLength

getLength(): string

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

L
luoying_ace_admin 已提交
456 457
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

K
kukixi 已提交
458
**返回值:**
Z
zhaoxinyu 已提交
459

H
HelloCrease 已提交
460 461
| 类型     | 说明                 |
| ------ | ------------------ |
G
gmy 已提交
462
| string | 页面数量,页面栈支持最大数值是32。 |
K
kukixi 已提交
463 464

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

466
```js
467 468
var size = router.getLength();        
console.log('pages stack size = ' + size);    
469
```
K
kukixi 已提交
470 471 472 473 474 475 476 477 478 479 480

## router.getState

getState(): RouterState

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

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

**返回值:**

H
HelloCrease 已提交
481 482
| 类型                          | 说明      |
| --------------------------- | ------- |
483
| [RouterState](#routerstate) | 页面状态信息。 |
484

485 486 487 488 489 490 491 492 493
**示例:** 

```js
var page = router.getState();
console.log('current index = ' + page.index);
console.log('current name = ' + page.name);
console.log('current path = ' + page.path);
```

K
kukixi 已提交
494 495
## RouterState

496
页面状态信息。
K
kukixi 已提交
497

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

H
HelloCrease 已提交
500 501
| 名称    | 类型     | 说明                                 |
| ----- | ------ | ---------------------------------- |
502
| index | number | 表示当前页面在页面栈中的索引。从栈底到栈顶,index从1开始递增。 |
H
HelloCrease 已提交
503 504
| name  | string | 表示当前页面的名称,即对应文件名。                  |
| path  | string | 表示当前页面的路径。                         |
K
kukixi 已提交
505

Z
zhaoxinyu 已提交
506
## router.enableBackPageAlert<sup>9+</sup>
K
kukixi 已提交
507

Z
zhaoxinyu 已提交
508
enableBackPageAlert(options: EnableAlertOptions): void
K
kukixi 已提交
509 510 511 512 513 514

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

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

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

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

Z
zhaoxinyu 已提交
520 521 522 523 524 525 526 527
**错误码:**

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

| 错误码ID   | 错误码信息 |
| --------- | ------- |
| 100001    | Internal error. |

K
kukixi 已提交
528 529
**示例:**

Z
zhaoxinyu 已提交
530 531 532
  ```js    
try {
  router.enableBackPageAlert({            
533
    message: 'Message Info'        
Z
zhaoxinyu 已提交
534 535 536 537
  });
} catch(error) {
  console.error(`enableBackPageAlert failed, code is ${error.code}, message is ${error.message}`);
}
K
kukixi 已提交
538 539 540
  ```
## EnableAlertOptions

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

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

H
HelloCrease 已提交
545 546 547
| 名称      | 类型     | 必填   | 说明       |
| ------- | ------ | ---- | -------- |
| message | string | 是    | 询问对话框内容。 |
K
kukixi 已提交
548 549 550 551 552 553 554 555 556 557

## router.disableAlertBeforeBackPage

disableAlertBeforeBackPage(): void

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

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

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

559
```js
560
router.disableAlertBeforeBackPage();    
561
```
K
kukixi 已提交
562 563 564 565 566 567 568 569 570 571 572

##  router.getParams

getParams(): Object

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

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

**返回值:**

H
HelloCrease 已提交
573 574
| 类型     | 说明                |
| ------ | ----------------- |
K
kukixi 已提交
575
| Object | 发起跳转的页面往当前页传入的参数。 |
K
kukixi 已提交
576

K
kukixi 已提交
577 578
**示例:**

579 580 581
```
router.getParams();
```
K
kukixi 已提交
582 583 584 585 586

## RouterOptions

路由跳转选项。

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

T
tianyu 已提交
589 590 591 592
| 名称   | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| url    | string | 是   | 表示目标页面的url,可以用以下两种格式:<br/>-&nbsp;页面绝对路径,由配置文件中pages列表提供,例如:<br/>&nbsp;&nbsp;-&nbsp;pages/index/index<br/>&nbsp;&nbsp;-&nbsp;pages/detail/detail<br/>-&nbsp;特殊值,如果url的值是"/",则跳转到首页。 |
| params | Object | 否   | 跳转时要同时传递到目标页面的数据,跳转到目标页面后,参数可以在页面中直接使用,如this.data1(data1为跳转时params参数中的key值)。如果目标页面中已有该字段,则其值会被传入的字段值覆盖。 |
K
kukixi 已提交
593 594


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

H
huzeqi 已提交
598 599 600 601
## RouterMode<sup>9+</sup>

路由跳转模式。

602
**系统能力:** SystemCapability.ArkUI.ArkUI.Full。
603

H
HelloCrease 已提交
604 605 606
| 名称       | 描述                                       |
| -------- | ---------------------------------------- |
| Standard | 标准模式。                                    |
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
| Single   | 单实例模式。<br/>如果目标页面的url在页面栈中已经存在同url页面,离栈顶最近的页面会被移动到栈顶,移动后的页面为新建页。<br/>如目标页面的url在页面栈中不存在同url页面,按标准模式跳转。 |

## 完整示例

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

```js
// 在当前页面中
export default {
  pushPage() {
    router.push({
      url: 'pages/detail/detail',
      params: {
        data1: 'message',
      },
    });
  }
}
```
```js
// 在detail页面中
export default {
  onInit() {
T
tianyu 已提交
630
    console.info('showData1:' + router.getParams()[data1]);
631 632 633 634 635
  }
}
```

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

637 638 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 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
```ts
//通过router.push跳转至目标页携带params参数
import router from '@ohos.router'

@Entry
@Component
struct Index {
  async  routePage() {
    let options = {
      url: 'pages/second',
      params: {
        text: '这是第一页的值',
        data: {
          array: [12, 45, 78]
        },
      }
    }
    try {
      await router.push(options)
    } catch (err) {
      console.info(` fail callback, code: ${err.code}, msg: ${err.msg}`)
    }
  }

  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
        Text('这是第一页')
          .fontSize(50)
          .fontWeight(FontWeight.Bold)
      Button() {
        Text('next page')
          .fontSize(25)
          .fontWeight(FontWeight.Bold)
      }.type(ButtonType.Capsule)
          .margin({ top: 20 })
          .backgroundColor('#ccc')
          .onClick(() => {
            this.routePage()
      })
    }
    .width('100%')
    .height('100%')
  }
}
```

```ts
//在second页面中接收传递过来的参数
import router from '@ohos.router'

@Entry
@Component
struct Second {
  private content: string = "这是第二页"
  @State text: string = router.getParams()['text']
  @State data: any = router.getParams()['data']
  @State secondData : string = ''
  
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
      Text(`${this.content}`)
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
      Text(this.text)
        .fontSize(30)
        .onClick(()=>{
          this.secondData = (this.data.array[1]).toString()
        })
      .margin({top:20})
      Text('第一页传来的数值' + '  ' + this.secondData)
        .fontSize(20)
        .margin({top:20})
        .backgroundColor('red')      
    }
    .width('100%')
    .height('100%')
  }
}
Z
zhaoxinyu 已提交
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
```

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

push(options: RouterOptions): void

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

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

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

**参数:**

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


**示例:**

```js
router.push({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    },
  },
});
```
## router.push<sup>(deprecated)</sup>

push(options: RouterOptions, mode: RouterMode): void

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

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

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

**参数:**

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


**示例:**

```js
router.push({
  url: 'pages/routerpage2/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    },
  },
},router.RouterMode.Standard);
```

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

replace(options: RouterOptions): void

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

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

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

**参数:**

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

**示例:**

```js
router.replace({
  url: 'pages/detail',
  params: {
    data1: 'message',
  },
});
```

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

replace(options: RouterOptions, mode: RouterMode): void

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

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

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

**参数:**

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

**示例:**

```js
router.replace({
  url: 'pages/detail/detail',
  params: {
    data1: 'message',
  },
}, router.RouterMode.Standard);
```

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

enableAlertBeforeBackPage(options: EnableAlertOptions): void

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

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

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

**参数:**

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

**示例:**

  ```js        
  router.enableAlertBeforeBackPage({            
    message: 'Message Info'        
  });    
  ```