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

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


## 导入模块


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

## router.push

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

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

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

**参数:**

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

**示例:**

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


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

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


## router.replace

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

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

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

**参数:**

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

**示例:**

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


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

## router.back

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

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

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

**参数:**

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

**示例:**

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


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


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


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


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

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

187 188 189 190 191 192 193 194 195 196
## router.getParams

getParams(): ParamsInterface

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

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

**返回值:**

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

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

clear(): void

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

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

**示例:**

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

## router.getLength

getLength(): string

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

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

**返回值:**

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

**示例:**

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

## router.getState

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

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

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

**返回值:**

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

**示例:**

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

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

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

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

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

**参数:**

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

**示例:**

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

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

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

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

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

**参数:**

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

**示例:**

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

334 335 336 337 338 339
## RouterOptions

定义路由器的选项。

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

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


## BackRouterOptions

定义路由器返回的选项。

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

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

## RouterState

定义路由器的状态。

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

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

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

371
定义EnableAlertBeforeBackPage选项。
372 373 374

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

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

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

定义DisableAlertBeforeBackPage参数选项。

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

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

## ParamsInterface

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