js-apis-router.md 10.8 KB
Newer Older
W
wusongqing 已提交
1 2
# Page Routing

W
wusongqing 已提交
3
> **NOTE**
W
wusongqing 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
>
> - 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.
> - Page routing APIs can be invoked only after page rendering is complete. Do not call the APIs in **onInit** and **onReady** when the page is still in the rendering phase.

## Modules to Import

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

## Required Permissions

None.

## router.push

push(options: RouterOptions): void

Navigates to a specified page in the application.

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

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


**Example**
W
wusongqing 已提交
33
  ```js
W
wusongqing 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
  // Current page
  export default {
    pushPage() {
      router.push({
        url: 'pages/routerpage2/routerpage2',
        params: {
  	data1: 'message',
          data2: {
            data3: [123, 456, 789]
  	},
        },
      });
    }
  }
  ```
W
wusongqing 已提交
49
  ```js
W
wusongqing 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
  // routerpage2 page
  export default {
    data: {
      data1: 'default',
      data2: {
        data3: [1, 2, 3]
      }
    },
    onInit() {
      console.info('showData1:' + this.data1);
      console.info('showData3:' + this.data2.data3);
    }
  }
  ```


## router.replace

replace(options: RouterOptions): void

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

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

**Parameters**
W
wusongqing 已提交
75 76 77
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| options | [RouterOptions](#routeroptions) | Yes| Description of the new page.|
W
wusongqing 已提交
78 79

**Example**
W
wusongqing 已提交
80 81

  ```js
W
wusongqing 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94
  // Current page
  export default {
    replacePage() {
      router.replace({
        url: 'pages/detail/detail',
        params: {
          data1: 'message',
        },
      });
    }
  }
  ```

W
wusongqing 已提交
95
  ```js
W
wusongqing 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
  // detail page
  export default {
    data: {
      data1: 'default'
    },
    onInit() {
      console.info('showData1:' + this.data1)
    }
  }
  ```

## router.back

back(options?: RouterOptions ): void

Returns to the previous page or a specified page.

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

**Parameters**
W
wusongqing 已提交
116 117 118
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| options | [RouterOptions](#routeroptions) | Yes| 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 this parameter is not set, the application returns to the previous page.|
W
wusongqing 已提交
119 120

**Example**
W
wusongqing 已提交
121
  ```js
W
wusongqing 已提交
122 123 124 125 126 127 128 129 130 131
  // index page
  export default {    
    indexPushPage() {        
      router.push({            
        url: 'pages/detail/detail',        
      });        
    }
  }
  ```

W
wusongqing 已提交
132
  ```js
W
wusongqing 已提交
133 134 135 136 137 138 139 140 141 142
  // detail page
  export default {    
    detailPushPage() {        
      router.push({            
        url: 'pages/mall/mall',        
      });    
    }
  }
  ```

W
wusongqing 已提交
143
  ```js
W
wusongqing 已提交
144 145 146 147 148 149 150 151
  // Navigate from the mall page to the detail page through router.back().
  export default {    
    mallBackPage() {        
      router.back();    
    }
  }
  ```

W
wusongqing 已提交
152
  ```js
W
wusongqing 已提交
153 154 155 156 157 158 159 160
  // Navigate from the detail page to the index page through router.back().
  export default {    
    defaultBack() {        
      router.back();    
    }
  }
  ```

W
wusongqing 已提交
161
  ```js
W
wusongqing 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
  // Return to the detail page through router.back().
  export default {    
    backToDetail() {        
      router.back({uri:'pages/detail/detail'});    
    }
  }
  ```

## 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 已提交
179
  ```js
W
wusongqing 已提交
180 181 182 183
  export default {    
    clearPage() {        
      router.clear();    
    }
W
wusongqing 已提交
184
  }js
W
wusongqing 已提交
185 186 187 188 189 190 191 192
  ```

## router.getLength

getLength(): string

Obtains the number of pages in the current stack.

W
wusongqing 已提交
193 194
**System capability**: SystemCapability.ArkUI.ArkUI.Full

W
wusongqing 已提交
195
**Return value**
W
wusongqing 已提交
196 197 198
| Type| Description|
| -------- | -------- |
| string | Number of pages in the stack. The maximum value is **32**.|
W
wusongqing 已提交
199 200

**Example**
W
wusongqing 已提交
201
  ```js
W
wusongqing 已提交
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
  export default {     
    getLength() {        
      var size = router.getLength();        
      console.log('pages stack size = ' + size);    
    }
  }
  ```

## router.getState

getState(): RouterState

Obtains state information about the current page.

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

**Return value**

| Type                       | Description          |
| --------------------------- | -------------- |
| [RouterState](#routerstate) | Page routing state.|
## RouterState
Describes the page routing state.

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

W
wusongqing 已提交
228 229 230 231 232
| Name| Type| Description|
| -------- | -------- | -------- |
| index | number | Index of the current page in the stack.<br>>&nbsp;![icon-note.gif](public_sys-resources/icon-note.gif)&nbsp;**NOTE**<br>>&nbsp;The index starts from 1 from the bottom to the top of the stack.|
| name | string | Name of the current page, that is, the file name.|
| path | string | Path of the current page.|
W
wusongqing 已提交
233 234

**Example**
W
wusongqing 已提交
235
  ```js
W
wusongqing 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
  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

enableAlertBeforeBackPage(options: EnableAlertOptions): void

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

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

**Parameters**
W
wusongqing 已提交
255 256 257
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| options | [EnableAlertOptions](#enablealertoptions) | Yes| Description of the dialog box.|
W
wusongqing 已提交
258 259 260

**Example**

W
wusongqing 已提交
261
  ```js
W
wusongqing 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
  export default {    
    enableAlertBeforeBackPage() {        
      router.enableAlertBeforeBackPage({            
        message: 'Message Info',            
        success: function() {                
          console.log('success');            
        },            
        fail: function() {                
          console.log('fail');            
        },        
      });    
    }
  }
  ```
## EnableAlertOptions

Describes the confirm dialog box.

W
wusongqing 已提交
280
**System capability**: SystemCapability.ArkUI.ArkUI.Full
W
wusongqing 已提交
281 282 283 284 285 286 287 288 289 290 291 292 293 294

| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| message | string | Yes| Content displayed in the confirm dialog box.|

## 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**
W
wusongqing 已提交
295
  ```js
W
wusongqing 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  export default {    
    disableAlertBeforeBackPage() {        
      router.disableAlertBeforeBackPage();    
    }
  }
  ```

##  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**

| Type  | Description                              |
| ------ | ---------------------------------- |
| Object | Parameters passed from the page that initiates redirection to the current page.|

**Example**

- Web-like example
W
wusongqing 已提交
320
  ```js
W
wusongqing 已提交
321 322 323 324 325 326 327 328 329 330 331 332
  // Current page
  export default {
    pushPage() {
      router.push({
        url: 'pages/detail/detail',
        params: {
          data1: 'message',
        },
      });
    }
  }
  ```
W
wusongqing 已提交
333
  ```js
W
wusongqing 已提交
334 335 336 337 338 339 340 341 342 343
  // detail page
  export default {
    onInit() {
      console.info('showData1:' + router.getParams().data1);
    }
  }
  ```

- Declarative example

W
wusongqing 已提交
344
  ```ts
W
wusongqing 已提交
345 346 347 348 349 350 351 352 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
  // Navigate to the target page through router.push with the params parameter carried.
  import router from '@ohos.router'
  
  @Entry
  @Component
  struct Index {
    async  routePage() {
      let options = {
        url: 'pages/second',
        params: {
          text: 'This is the value on the first page.',
          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('This is the first page.')
            .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%')
    }
  }
  ```

W
wusongqing 已提交
390
  ```ts
W
wusongqing 已提交
391 392 393 394 395 396 397
  // Receive the transferred parameters on the second page.
  import router from '@ohos.router'
  
  @Entry
  @Component
  struct Second {
    private content: string = "This is the second page."
W
wusongqing 已提交
398 399
    @State text: string = router.getParams()['text']
    @State data: any = router.getParams()['data']
W
wusongqing 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
    @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('Value from the first page '+'' + this.secondData)
          .fontSize(20)
          .margin({top:20})
          .backgroundColor('red')      
      }
      .width('100%')
      .height('100%')
    }
  }
  ```

## RouterOptions

Describes the page routing options.

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

| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| url | string | Yes| URI of the destination page, in either of the following formats:<br>-&nbsp; Absolute path of the page. The value is available in the pages list in the config.json file, for example:<br>&nbsp;&nbsp;-&nbsp;pages/index/index<br>&nbsp;&nbsp;-&nbsp;pages/detail/detail<br>-&nbsp; Particular path. If the URI is a slash (/), the home page is displayed.|
| params | Object | No| Data that needs to be passed to the destination page during redirection. After the destination page is displayed, it can use the passed data, for example, **this.data1** (**data1** is a key in **params**). If there is the same key (for example, **data1**) on the destination page, the passed **data1** value will replace the original value on the destination page.|


  > ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE**
  > The page routing stack supports a maximum of 32 pages.