js-apis-router.md 21.4 KB
Newer Older
1
# @ohos.router (Page Routing)
W
wusongqing 已提交
2

W
wusongqing 已提交
3 4
The **Router** module provides APIs to access pages through URLs. You can use the APIs to navigate to a specified page in an application, replace the current page with another one in an application, and return to the previous page or a specified page.

W
wusongqing 已提交
5
> **NOTE**
W
wusongqing 已提交
6 7
>
> - The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version.
W
wusongqing 已提交
8
>
W
wusongqing 已提交
9
> - Page routing APIs can be invoked only after page rendering is complete. Do not call these APIs in **onInit** and **onReady** when the page is still in the rendering phase.
W
wusongqing 已提交
10 11 12 13 14 15 16

## Modules to Import

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

17
## router.pushUrl<sup>9+</sup>
W
wusongqing 已提交
18

19
pushUrl(options: RouterOptions): Promise&lt;void&gt;
W
wusongqing 已提交
20 21 22 23 24 25

Navigates to a specified page in the application.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**
26

W
wusongqing 已提交
27 28 29
| Name    | Type                             | Mandatory  | Description       |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | Yes   | Page routing parameters.|
W
wusongqing 已提交
30

31 32 33 34 35 36 37 38 39 40 41 42
**Return value**

| Type               | Description       |
| ------------------- | --------- |
| Promise&lt;void&gt; | Promise used to return the result.|

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
43 44 45
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
W
wusongqing 已提交
46 47

**Example**
48

W
wusongqing 已提交
49
```js
50 51 52 53 54 55
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
56
    }
57 58 59 60 61 62 63
  }
})
  .then(() => {
    // success
  })
  .catch(err => {
    console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
64
  })
W
wusongqing 已提交
65
```
W
wusongqing 已提交
66

67 68 69 70 71 72 73 74 75 76 77 78 79
## router.pushUrl<sup>9+</sup>

pushUrl(options: RouterOptions, callback: AsyncCallback&lt;void&gt;): void

Navigates to a specified page in the application.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**

| Name    | Type                             | Mandatory  | Description       |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | Yes   | Page routing parameters.|
80
| callback | AsyncCallback&lt;void&gt;      | Yes  | Callback used to return the result.  |
81 82 83 84 85 86 87

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
88 89 90
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
91 92 93 94

**Example**

```js
95 96 97 98 99 100
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
101
    }
102 103 104 105 106 107 108 109
  }
}, (err) => {
  if (err) {
    console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
    return;
  }
  console.info('pushUrl success');
});
110 111 112 113
```
## router.pushUrl<sup>9+</sup>

pushUrl(options: RouterOptions, mode: RouterMode): Promise&lt;void&gt;
W
wusongqing 已提交
114 115 116 117 118 119

Navigates to a specified page in the application.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**
120

W
wusongqing 已提交
121 122 123 124
| Name    | Type                             | Mandatory  | Description        |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | Yes   | Page routing parameters. |
| mode    | [RouterMode](#routermode9)      | Yes   | Routing mode.|
W
wusongqing 已提交
125

126 127 128 129 130 131 132 133 134 135 136 137
**Return value**

| Type               | Description       |
| ------------------- | --------- |
| Promise&lt;void&gt; | Promise used to return the result.|

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
138 139 140
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
W
wusongqing 已提交
141 142

**Example**
143

W
wusongqing 已提交
144
```js
145 146 147 148 149 150
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
151
    }
152 153 154 155 156 157 158 159
  }
}, router.RouterMode.Standard)
  .then(() => {
    // success
  })
  .catch(err => {
    console.error(`pushUrl failed, code is ${err.code}, message is ${err.message}`);
  })
W
wusongqing 已提交
160
```
W
wusongqing 已提交
161

162
## router.pushUrl<sup>9+</sup>
W
wusongqing 已提交
163

164
pushUrl(options: RouterOptions, mode: RouterMode, callback: AsyncCallback&lt;void&gt;): void
W
wusongqing 已提交
165

166
Navigates to a specified page in the application.
W
wusongqing 已提交
167 168 169 170

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**
W
wusongqing 已提交
171

172 173 174 175
| Name    | Type                             | Mandatory  | Description        |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | Yes   | Page routing parameters. |
| mode    | [RouterMode](#routermode9)      | Yes   | Routing mode.|
176
| callback | AsyncCallback&lt;void&gt;      | Yes  | Callback used to return the result.  |
177 178 179 180 181 182 183

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
184 185 186
| 100001    | if UI execution context not found. |
| 100002    | if the uri is not exist. |
| 100003    | if the pages are pushed too much. |
187 188 189 190

**Example**

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

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

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

Replaces the current page with another one in the application and destroys the current page.

**System capability**: SystemCapability.ArkUI.ArkUI.Lite

**Parameters**

W
wusongqing 已提交
218 219 220
| Name | Type                           | Mandatory| Description              |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | Yes  | Description of the new page.|
W
wusongqing 已提交
221

222 223 224 225 226 227 228 229 230 231 232 233
**Return value**

| Type               | Description       |
| ------------------- | --------- |
| Promise&lt;void&gt; | Promise used to return the result.|

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
234 235
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
236

W
wusongqing 已提交
237
**Example**
W
wusongqing 已提交
238

W
wusongqing 已提交
239
```js
240 241 242 243 244 245 246 247 248 249 250
router.replaceUrl({
  url: 'pages/detail',
  params: {
    data1: 'message'
  }
})
  .then(() => {
    // success
  })
  .catch(err => {
    console.error(`replaceUrl failed, code is ${err.code}, message is ${err.message}`);
251
  })
W
wusongqing 已提交
252
```
W
wusongqing 已提交
253

254
## router.replaceUrl<sup>9+</sup>
W
wusongqing 已提交
255

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

Replaces the current page with another one in the application and destroys the current page.

260 261 262 263 264 265 266
**System capability**: SystemCapability.ArkUI.ArkUI.Lite

**Parameters**

| Name | Type                           | Mandatory| Description              |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | Yes  | Description of the new page.|
267
| callback | AsyncCallback&lt;void&gt;      | Yes  | Callback used to return the result.  |
268 269 270 271 272 273 274

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
275 276
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
277 278 279 280

**Example**

```js
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');
});
293 294 295 296 297 298 299 300 301
```

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

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

Replaces the current page with another one in the application and destroys the current page.

**System capability**: SystemCapability.ArkUI.ArkUI.Lite
W
wusongqing 已提交
302 303

**Parameters**
304

W
wusongqing 已提交
305 306 307 308
| Name    | Type                             | Mandatory  | Description        |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | Yes   | Description of the new page. |
| mode    | [RouterMode](#routermode9)      | Yes   | Routing mode.|
W
wusongqing 已提交
309

310 311 312 313 314 315 316 317 318 319 320 321 322

**Return value**

| Type               | Description       |
| ------------------- | --------- |
| Promise&lt;void&gt; | Promise used to return the result.|

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
323 324
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
325

W
wusongqing 已提交
326 327
**Example**

W
wusongqing 已提交
328
```js
329 330 331 332 333 334 335 336 337 338 339 340
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}`);
  })
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
```

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

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

Replaces the current page with another one in the application and destroys the current page.

**System capability**: SystemCapability.ArkUI.ArkUI.Lite

**Parameters**

| Name    | Type                             | Mandatory  | Description        |
| ------- | ------------------------------- | ---- | ---------- |
| options | [RouterOptions](#routeroptions) | Yes   | Description of the new page. |
| mode    | [RouterMode](#routermode9)      | Yes   | Routing mode.|
357
| callback | AsyncCallback&lt;void&gt;      | Yes  | Callback used to return the result.  |
358 359 360 361 362 363 364

**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
365 366
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |
367 368 369 370

**Example**

```js
371 372 373 374 375 376 377 378 379 380 381 382
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');
});
W
wusongqing 已提交
383
```
W
wusongqing 已提交
384 385 386 387 388 389 390 391 392 393

## router.back

back(options?: RouterOptions ): void

Returns to the previous page or a specified page.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**
394

W
wusongqing 已提交
395 396
| Name | Type                           | Mandatory| Description                                                        |
| ------- | ------------------------------- | ---- | ------------------------------------------------------------ |
W
wusongqing 已提交
397
| options | [RouterOptions](#routeroptions) | No  | Description of the page. The **url** parameter indicates the URL of the page to return to. If the specified page does not exist in the page stack, the application does not respond. If no URL is set, the previous page is returned, and the page in the page stack is not reclaimed. It will be reclaimed after being popped up.|
W
wusongqing 已提交
398 399 400

**Example**

W
wusongqing 已提交
401 402 403
```js
router.back({url:'pages/detail'});    
```
W
wusongqing 已提交
404 405 406 407 408 409 410 411 412 413

## router.clear

clear(): void

Clears all historical pages in the stack and retains only the current page at the top of the stack.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Example**
W
wusongqing 已提交
414

W
wusongqing 已提交
415
```js
W
wusongqing 已提交
416
router.clear();    
W
wusongqing 已提交
417
```
W
wusongqing 已提交
418 419 420 421 422 423 424

## router.getLength

getLength(): string

Obtains the number of pages in the current stack.

W
wusongqing 已提交
425 426
**System capability**: SystemCapability.ArkUI.ArkUI.Full

W
wusongqing 已提交
427
**Return value**
428

W
wusongqing 已提交
429 430
| Type    | Description                |
| ------ | ------------------ |
W
wusongqing 已提交
431
| string | Number of pages in the stack. The maximum value is **32**.|
W
wusongqing 已提交
432 433

**Example**
434

W
wusongqing 已提交
435
```js
436
let size = router.getLength();        
W
wusongqing 已提交
437
console.log('pages stack size = ' + size);    
W
wusongqing 已提交
438
```
W
wusongqing 已提交
439 440 441 442 443 444 445 446 447 448 449

## router.getState

getState(): RouterState

Obtains state information about the current page.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Return value**

W
wusongqing 已提交
450 451
| Type                         | Description     |
| --------------------------- | ------- |
W
wusongqing 已提交
452
| [RouterState](#routerstate) | Page routing state.|
G
Gloria 已提交
453

W
wusongqing 已提交
454 455 456
**Example**

```js
457
let page = router.getState();
W
wusongqing 已提交
458 459 460 461 462
console.log('current index = ' + page.index);
console.log('current name = ' + page.name);
console.log('current path = ' + page.path);
```

W
wusongqing 已提交
463
## RouterState
W
wusongqing 已提交
464

W
wusongqing 已提交
465 466 467 468
Describes the page routing state.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

469 470 471 472 473
| Name | Type  | Mandatory| Description                                                        |
| ----- | ------ | ---- | ------------------------------------------------------------ |
| index | number | Yes  | Index of the current page in the stack. The index starts from 1 from the bottom to the top of the stack.|
| name  | string | No  | Name of the current page, that is, the file name.                          |
| path  | string | Yes  | Path of the current page.                                        |
W
wusongqing 已提交
474

475
## router.enableBackPageAlert<sup>9+</sup>
W
wusongqing 已提交
476

477
enableBackPageAlert(options: EnableAlertOptions): void
W
wusongqing 已提交
478 479 480 481 482 483

Enables the display of a confirm dialog box before returning to the previous page.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**
484

W
wusongqing 已提交
485 486 487
| Name    | Type                                      | Mandatory  | Description       |
| ------- | ---------------------------------------- | ---- | --------- |
| options | [EnableAlertOptions](#enablealertoptions) | Yes   | Description of the dialog box.|
W
wusongqing 已提交
488

489 490 491 492 493 494
**Error codes**

For details about the error codes, see [Router Error Codes](../errorcodes/errorcode-router.md).

| ID  | Error Message|
| --------- | ------- |
495
| 100001    | if UI execution context not found. |
496

W
wusongqing 已提交
497 498
**Example**

499 500 501
  ```js    
try {
  router.enableBackPageAlert({            
W
wusongqing 已提交
502
    message: 'Message Info'        
503 504 505 506
  });
} catch(error) {
  console.error(`enableBackPageAlert failed, code is ${error.code}, message is ${error.message}`);
}
W
wusongqing 已提交
507 508 509 510 511
  ```
## EnableAlertOptions

Describes the confirm dialog box.

W
wusongqing 已提交
512
**System capability**: SystemCapability.ArkUI.ArkUI.Full
W
wusongqing 已提交
513

W
wusongqing 已提交
514 515 516
| Name     | Type    | Mandatory  | Description      |
| ------- | ------ | ---- | -------- |
| message | string | Yes   | Content displayed in the confirm dialog box.|
W
wusongqing 已提交
517 518 519 520 521 522 523 524 525 526

## router.disableAlertBeforeBackPage

disableAlertBeforeBackPage(): void

Disables the display of a confirm dialog box before returning to the previous page.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Example**
527

W
wusongqing 已提交
528
```js
W
wusongqing 已提交
529
router.disableAlertBeforeBackPage();    
W
wusongqing 已提交
530
```
W
wusongqing 已提交
531 532 533 534 535 536 537 538 539 540 541

##  router.getParams

getParams(): Object

Obtains the parameters passed from the page that initiates redirection to the current page.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Return value**

542 543 544
| Type  | Description                              |
| ------ | ---------------------------------- |
| object | Parameters passed from the page that initiates redirection to the current page.|
W
wusongqing 已提交
545 546 547

**Example**

W
wusongqing 已提交
548 549 550 551 552 553 554 555
```
router.getParams();
```

## RouterOptions

Describes the page routing options.

W
wusongqing 已提交
556
**System capability**: SystemCapability.ArkUI.ArkUI.Lite
W
wusongqing 已提交
557

558 559 560
| Name  | Type  | Mandatory| Description                                                        |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| url    | string | Yes  | URL of the target page, in either of the following formats:<br>- Absolute path of the page. The value is available in the pages list in the **config.json** file, for example:<br>- pages/index/index<br>- pages/detail/detail<br>- Particular path. If the URL is a slash (/), the home page is displayed.|
561
| params | object | No  | Data that needs to be passed to the target page during redirection. The target page can use **router.getParams()** to obtain the passed parameters, for example, **this.keyValue** (**keyValue** is the value of a key in **params**). In the web-like paradigm, these parameters can be directly used on the target page. If the field specified by **key** already exists on the target page, the passed value of the key will be displayed.|
W
wusongqing 已提交
562 563 564


  > **NOTE**
565
  >
W
wusongqing 已提交
566 567 568 569 570 571 572 573
  > The page routing stack supports a maximum of 32 pages.

## RouterMode<sup>9+</sup>

Enumerates the routing modes.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

574 575
| Name    | Description                                                        |
| -------- | ------------------------------------------------------------ |
E
ester.zhou 已提交
576
| Standard | Standard mode.<br>The target page is added to the top of the page stack, regardless of whether a page with the same URL exists in the stack.<br>**NOTE**<br>If the routing mode is not used, the page is redirected to in standard mode.|
W
wusongqing 已提交
577 578 579 580 581 582 583 584 585 586 587 588 589
| Single   | Singleton mode.<br>If the URL of the target page already exists in the page stack, the page closest to the top of the stack is moved as a new page to the top of the stack.<br>If the URL of the target page does not exist in the page stack, the page is redirected to in standard mode.|

## Examples

### JavaScript-based Web-like Development Paradigm

```js
// Current page
export default {
  pushPage() {
    router.push({
      url: 'pages/detail/detail',
      params: {
590 591
        data1: 'message'
      }
W
wusongqing 已提交
592
    });
W
wusongqing 已提交
593
  }
W
wusongqing 已提交
594 595 596 597 598 599
}
```
```js
// detail page
export default {
  onInit() {
W
wusongqing 已提交
600
    console.info('showData1:' + router.getParams()[data1]);
W
wusongqing 已提交
601
  }
W
wusongqing 已提交
602 603
}
```
W
wusongqing 已提交
604

W
wusongqing 已提交
605
### TypeScript-based Declarative Development Paradigm
W
wusongqing 已提交
606

W
wusongqing 已提交
607
```ts
608
// Navigate to the target page through router.pushUrl with the params parameter carried.
W
wusongqing 已提交
609 610 611 612 613
import router from '@ohos.router'

@Entry
@Component
struct Index {
614
  async  routePage() {
W
wusongqing 已提交
615 616 617 618 619 620
    let options = {
      url: 'pages/second',
      params: {
        text: 'This is the value on the first page.',
        data: {
          array: [12, 45, 78]
621
        }
W
wusongqing 已提交
622 623
      }
    }
W
wusongqing 已提交
624
    try {
625
      await router.pushUrl(options)
W
wusongqing 已提交
626 627
    } catch (err) {
      console.info(` fail callback, code: ${err.code}, msg: ${err.msg}`)
W
wusongqing 已提交
628 629 630
    }
  }

W
wusongqing 已提交
631 632
  build() {
    Flex({ direction: FlexDirection.Column, alignItems: ItemAlign.Center, justifyContent: FlexAlign.Center }) {
633 634 635
      Text('This is the first page.')
        .fontSize(50)
        .fontWeight(FontWeight.Bold)
W
wusongqing 已提交
636 637 638 639 640
      Button() {
        Text('next page')
          .fontSize(25)
          .fontWeight(FontWeight.Bold)
      }.type(ButtonType.Capsule)
641 642 643 644
      .margin({ top: 20 })
      .backgroundColor('#ccc')
      .onClick(() => {
        this.routePage()
W
wusongqing 已提交
645
      })
W
wusongqing 已提交
646
    }
W
wusongqing 已提交
647 648
    .width('100%')
    .height('100%')
W
wusongqing 已提交
649
  }
W
wusongqing 已提交
650 651
}
```
W
wusongqing 已提交
652

W
wusongqing 已提交
653 654 655
```ts
// Receive the transferred parameters on the second page.
import router from '@ohos.router'
W
wusongqing 已提交
656

W
wusongqing 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675
@Entry
@Component
struct Second {
  private content: string = "This is the second page."
  @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})
676
      Text(`This is the data passed from the first page: ${this.secondData}`)
W
wusongqing 已提交
677 678 679 680 681 682 683 684 685
        .fontSize(20)
        .margin({top:20})
        .backgroundColor('red')      
    }
    .width('100%')
    .height('100%')
  }
}
```
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

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

push(options: RouterOptions): void

Navigates to a specified page in the application.

This API is deprecated since API version 9. You are advised to use [pushUrl<sup>9+</sup>](#routerpushurl9) instead.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**

| Name    | Type                             | Mandatory  | Description       |
| ------- | ------------------------------- | ---- | --------- |
| options | [RouterOptions](#routeroptions) | Yes   | Page routing parameters.|


**Example**

```js
router.push({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
713 714
    }
  }
715 716 717 718 719 720 721 722 723 724 725
});
```

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

replace(options: RouterOptions): void

Replaces the current page with another one in the application and destroys the current page.

This API is deprecated since API version 9. You are advised to use [replaceUrl<sup>9+</sup>](#routerreplaceurl9) instead.

726
**System capability**: SystemCapability.ArkUI.ArkUI.Lite
727 728 729 730 731 732 733 734 735 736 737 738 739

**Parameters**

| Name | Type                           | Mandatory| Description              |
| ------- | ------------------------------- | ---- | ------------------ |
| options | [RouterOptions](#routeroptions) | Yes  | Description of the new page.|

**Example**

```js
router.replace({
  url: 'pages/detail',
  params: {
740 741
    data1: 'message'
  }
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
});
```

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

enableAlertBeforeBackPage(options: EnableAlertOptions): void

Enables the display of a confirm dialog box before returning to the previous page.

This API is deprecated since API version 9. You are advised to use [enableBackPageAlert<sup>9+</sup>](#routerenablebackpagealert9) instead.

**System capability**: SystemCapability.ArkUI.ArkUI.Full

**Parameters**

| Name    | Type                                      | Mandatory  | Description       |
| ------- | ---------------------------------------- | ---- | --------- |
| options | [EnableAlertOptions](#enablealertoptions) | Yes   | Description of the dialog box.|

**Example**

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