js-apis-arkui-UIContext.md 65.6 KB
Newer Older
H
huangdong57 已提交
1 2
# @ohos.arkui.UIContext (UIContext)

H
huangdong57 已提交
3 4 5
在Stage模型中,WindowStage/Window可以通过loadContent接口加载页面并创建UI的实例,并将页面内容渲染到关联的窗口中,所以UI实例和窗口是一一关联的。一些全局的UI接口是和具体UI实例的执行上下文相关的,在当前接口调用时,通过追溯调用链跟踪到UI的上下文,来确定具体的UI实例。若在非UI页面中或者一些异步回调中调用这类接口,可能无法跟踪到当前UI的上下文,导致接口执行失败。

@ohos.window在API version 10 新增[getUIContext](./js-apis-window.md#getuicontext10)接口,获取UI上下文实例UIContext对象,使用UIContext对象提供的替代方法,可以直接作用在对应的UI实例上。
H
huangdong57 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

> **说明:**
>
> 本模块首批接口从API version 10开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
> 示例效果请以真机运行为准,当前IDE预览器不支持。

## UIContext

以下API需先使用ohos.window中的[getUIContext()](./js-apis-window.md#getuicontext10)方法获取UIContext实例,再通过此实例调用对应方法。本文中UIContext对象以uiContext表示。

### getFont

getFont(): Font

获取Font对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [Font](#font) | 返回Font实例对象。 |

**示例:**

```ts
uiContext.getFont();
```
H
huangdong57 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
### getComponentUtils

getComponentUtils(): ComponentUtils

获取ComponentUtils对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [ComponentUtils](#componentutils) | 返回ComponentUtils实例对象。 |

**示例:**

```ts
uiContext.getComponentUtils();
```
H
huangdong57 已提交
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
### getUIInspector

getUIInspector(): UIInspector

获取UIInspector对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [UInspector](#uiinspector) | 返回UIInspector实例对象。 |

**示例:**

```ts
uiContext.getUIInspector();
```

H
huangdong57 已提交
76 77 78 79 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 129 130 131 132 133 134 135 136 137 138 139 140 141
### getMediaQuery

getMediaQuery(): MediaQuery

获取MediaQuery对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [MediaQuery](#mediaquery) | 返回MediaQuery实例对象。 |

**示例:**

```ts
uiContext.getMediaQuery();
```

### getRouter

getRouter(): Router

获取Router对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [Router](#router) | 返回Router实例对象。 |

**示例:**

```ts
uiContext.getRouter();
```

### getPromptAction

getPromptAction(): PromptAction

获取PromptAction对象。

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

**返回值:**

| 类型  | 说明          |
| ----- | ----------------- |
| [PromptAction](#promptaction) | 返回PromptAction实例对象。 |

**示例:**

```ts
uiContext.getPromptAction();
```

### animateTo

animateTo(value: AnimateParam, event: () => void): void

提供animateTo接口来指定由于闭包代码导致的状态变化插入过渡动效。

Y
yamila 已提交
142 143
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
144 145 146 147
从API version 9开始,该接口支持在ArkTS卡片中使用。

**参数:**

Y
yamila 已提交
148
| 参数名            | 类型        |       必填     |        说明        |
H
huangdong57 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 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
| ---------------- | ------------ | -------------------- | -------------------- |
| value | [AnimateParam](../arkui-ts/ts-explicit-animation.md#animateparam对象说明) | 是 | 设置动画效果相关参数。 |
| event | () => void | 是 | 指定显示动效的闭包函数,在闭包函数中导致的状态变化系统会自动插入过渡动画。 |

**示例:**

```ts
// xxx.ets
@Entry
@Component
struct AnimateToExample {
  @State widthSize: number = 250
  @State heightSize: number = 100
  @State rotateAngle: number = 0
  private flag: boolean = true

  build() {
    Column() {
      Button('change size')
        .width(this.widthSize)
        .height(this.heightSize)
        .margin(30)
        .onClick(() => {
          if (this.flag) {
            uiContext.animateTo({
              duration: 2000,
              curve: Curve.EaseOut,
              iterations: 3,
              playMode: PlayMode.Normal,
              onFinish: () => {
                console.info('play end')
              }
            }, () => {
              this.widthSize = 150
              this.heightSize = 60
            })
          } else {
            uiContext.animateTo({}, () => {
              this.widthSize = 250
              this.heightSize = 100
            })
          }
          this.flag = !this.flag
        })
      Button('change rotate angle')
        .margin(50)
        .rotate({ x: 0, y: 0, z: 1, angle: this.rotateAngle })
        .onClick(() => {
          uiContext.animateTo({
            duration: 1200,
            curve: Curve.Friction,
            delay: 500,
            iterations: -1, // 设置-1表示动画无限循环
            playMode: PlayMode.Alternate,
            onFinish: () => {
              console.info('play end')
            }
          }, () => {
            this.rotateAngle = 90
          })
        })
    }.width('100%').margin({ top: 5 })
  }
}
```

### showAlertDialog

Y
yamila 已提交
217
showAlertDialog(options: AlertDialogParamWithConfirm | AlertDialogParamWithButtons | AlertDialogParamWithOptions): void
H
huangdong57 已提交
218 219 220

显示警告弹窗组件,可设置文本内容与响应回调。

Y
yamila 已提交
221 222
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
223 224
**参数:**

Y
yamila 已提交
225 226
| 参数名    | 类型  | 必填 | 说明 |
| ---- | --------------- | -------- | -------- |
227 228
| options | [AlertDialogParamWithConfirm](../arkui-ts/ts-methods-alert-dialog-box.md#alertdialogparamwithconfirm对象说明) \| [AlertDialogParamWithButtons](../arkui-ts/ts-methods-alert-dialog-box.md#alertdialogparamwithbuttons对象说明) \| [AlertDialogParamWithOptions](../arkui-ts/ts-methods-alert-dialog-box.md#alertdialogparamwithoptions10对象说明)  | 是 | 定义并显示AlertDialog组件。 |

H
huangdong57 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259

**示例:**

```ts
uiContext.showAlertDialog(
  {
    title: 'title',
    message: 'text',
    autoCancel: true,
    alignment: DialogAlignment.Bottom,
    offset: { dx: 0, dy: -20 },
    gridCount: 3,
    confirm: {
      value: 'button',
      action: () => {
        console.info('Button-clicking callback')
      }
    },
    cancel: () => {
      console.info('Closed callbacks')
    }
  }
)
```

### showActionSheet

showActionSheet(value: ActionSheetOptions): void

定义列表弹窗并弹出。

Y
yamila 已提交
260 261
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
262 263
**ActionSheetOptions参数:**

Y
yamila 已提交
264
| 参数名        | 类型                    | 必填  | 说明                        |
H
huangdong57 已提交
265 266 267 268 269 270 271
| ---------- | -------------------------- | ------- | ----------------------------- |
| title      | [Resource](../arkui-ts/ts-types.md#resource) \| string | 是     |  弹窗标题。 |
| message    | [Resource](../arkui-ts/ts-types.md#resource) \| string | 是     | 弹窗内容。  |
| autoCancel | boolean                           | 否     | 点击遮障层时,是否关闭弹窗。<br>默认值:true |
| confirm    | {<br/>value:&nbsp;[ResourceStr](../arkui-ts/ts-types.md#resourcestr),<br/>action:&nbsp;()&nbsp;=&gt;&nbsp;void<br/>} | 否  | 确认按钮的文本内容和点击回调。<br>默认值:<br/>value:按钮文本内容。<br/>action:&nbsp;按钮选中时的回调。 |
| cancel     | ()&nbsp;=&gt;&nbsp;void           | 否     | 点击遮障层关闭dialog时的回调。   |
| alignment  | [DialogAlignment](../arkui-ts/ts-methods-alert-dialog-box.md#dialogalignment枚举说明) | 否     |  弹窗在竖直方向上的对齐方式。<br>默认值:DialogAlignment.Bottom |
H
huangdong57 已提交
272
| offset     | {<br/>dx:&nbsp;[Length](../arkui-ts/ts-types.md#length),<br/>dy:&nbsp;[Length](../arkui-ts/ts-types.md#length)<br/>} | 否      | 弹窗相对alignment所在位置的偏移量。{<br/>dx:&nbsp;0,<br/>dy:&nbsp;0<br/>} |
H
huangdong57 已提交
273 274 275 276
| sheets     | Array&lt;SheetInfo&gt; | 是       | 设置选项内容,每个选择项支持设置图片、文本和选中的回调。 |

**SheetInfo接口说明:**

Y
yamila 已提交
277
| 参数名 | 类型                                                     | 必填 | 说明        |
H
huangdong57 已提交
278 279 280 281 282 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 329
| ------ | ------------------------------------------------------------ | ---- | ----------------- |
| title  | [ResourceStr](../arkui-ts/ts-types.md#resourcestr) | 是   | 选项的文本内容。       |
| icon   | [ResourceStr](../arkui-ts/ts-types.md#resourcestr) | 否   | 选项的图标,默认无图标显示。     |
| action | ()=&gt;void                                          | 是   | 选项选中的回调。 |

**示例:**

```ts
uiContext.showActionSheet({
  title: 'ActionSheet title',
  message: 'message',
  autoCancel: true,
  confirm: {
    value: 'Confirm button',
    action: () => {
      console.log('Get Alert Dialog handled')
    }
  },
  cancel: () => {
    console.log('actionSheet canceled')
  },
  alignment: DialogAlignment.Bottom,
  offset: { dx: 0, dy: -10 },
  sheets: [
    {
      title: 'apples',
      action: () => {
        console.log('apples')
      }
    },
    {
      title: 'bananas',
      action: () => {
        console.log('bananas')
      }
    },
    {
      title: 'pears',
      action: () => {
        console.log('pears')
      }
    }
  ]
})
```

### showDatePickerDialog

showDatePickerDialog(options: DatePickerDialogOptions): void

定义日期滑动选择器弹窗并弹出。

Y
yamila 已提交
330 331
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
332 333
**DatePickerDialogOptions参数:**

Y
yamila 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| start | Date | 否 | 设置选择器的起始日期。<br/>默认值:Date('1970-1-1') |
| end | Date | 否 | 设置选择器的结束日期。<br/>默认值:Date('2100-12-31') |
| selected | Date | 否 | 设置当前选中的日期。<br/>默认值:当前系统日期 |
| lunar | boolean | 否 | 日期是否显示为农历。<br/>默认值:false |
| showTime | boolean | 否 | 是否展示时间项。<br/>默认值:false |
| useMilitaryTime | boolean | 否 | 展示时间是否为24小时制。<br/>默认值:false |
| disappearTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中最上和最下两个选项的文本颜色、字号、字体粗细。 |
| textStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中除了最上、最下及选中项以外的文本颜色、字号、字体粗细。 |
| selectedTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置选中项的文本颜色、字号、字体粗细。 |
| onAccept | (value: [DatePickerResult](../arkui-ts/ts-basic-components-datepicker.md#datepickerresult对象说明)) => void | 否 | 点击弹窗中的“确定”按钮时触发该回调。 |
| onCancel | () => void | 否 | 点击弹窗中的“取消”按钮时触发该回调。 |
| onChange | (value: [DatePickerResult](../arkui-ts/ts-basic-components-datepicker.md#datepickerresult对象说明)) => void | 否 | 滑动弹窗中的滑动选择器使当前选中项改变时触发该回调。 |
H
huangdong57 已提交
348 349 350 351 352 353 354 355 356 357 358

**示例:**

```ts
let selectedDate: Date = new Date("2010-1-1")
uiContext.showDatePickerDialog({
  start: new Date("2000-1-1"),
  end: new Date("2100-12-31"),
  selected: selectedDate,
  onAccept: (value: DatePickerResult) => {
    // 通过Date的setFullYear方法设置按下确定按钮时的日期,这样当弹窗再次弹出时显示选中的是上一次确定的日期
L
lixinnan 已提交
359
    selectedDate.setFullYear(Number(value.year), Number(value.month), Number(value.day))
H
huangdong57 已提交
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
    console.info("DatePickerDialog:onAccept()" + JSON.stringify(value))
  },
  onCancel: () => {
    console.info("DatePickerDialog:onCancel()")
  },
  onChange: (value: DatePickerResult) => {
    console.info("DatePickerDialog:onChange()" + JSON.stringify(value))
  }
})
```

### showTimePickerDialog

showTimePickerDialog(options: TimePickerDialogOptions): void

定义时间滑动选择器弹窗并弹出。

Y
yamila 已提交
377 378
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
379 380
**TimePickerDialogOptions参数:**

Y
yamila 已提交
381
| 参数名 | 类型 | 必填 | 说明 |
H
huangdong57 已提交
382 383 384 385 386 387 388 389 390 391 392 393 394
| -------- | -------- | -------- | -------- |
| selected | Date | 否 | 设置当前选中的时间。<br/>默认值:当前系统时间 |
| useMilitaryTime | boolean | 否 | 展示时间是否为24小时制,默认为12小时制。<br/>默认值:false |
| disappearTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中最上和最下两个选项的文本颜色、字号、字体粗细。 |
| textStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中除了最上、最下及选中项以外的文本颜色、字号、字体粗细。 |
| selectedTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置选中项的文本颜色、字号、字体粗细。 |
| onAccept | (value: [TimePickerResult](../arkui-ts/ts-basic-components-timepicker.md#timepickerresult对象说明)) => void | 否 | 点击弹窗中的“确定”按钮时触发该回调。 |
| onCancel | () => void | 否 | 点击弹窗中的“取消”按钮时触发该回调。 |
| onChange | (value: [TimePickerResult](../arkui-ts/ts-basic-components-timepicker.md#timepickerresult对象说明)) => void | 否 | 滑动弹窗中的选择器使当前选中时间改变时触发该回调。 |

**示例:**

```ts
L
lixinnan 已提交
395 396 397 398 399 400
class sethours{
  selectTime: Date = new Date('2020-12-25T08:30:00')
  hours(h:number,m:number){
    this.selectTime.setHours(h,m)
  }
}
H
huangdong57 已提交
401 402 403 404
uiContext.showTimePickerDialog({
  selected: this.selectTime,
  onAccept: (value: TimePickerResult) => {
    // 设置selectTime为按下确定按钮时的时间,这样当弹窗再次弹出时显示选中的为上一次确定的时间
L
lixinnan 已提交
405 406 407 408
    let time = new sethours()
    if(value.hour&&value.minute){
      time.hours(value.hour, value.minute)
    }
H
huangdong57 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
    console.info("TimePickerDialog:onAccept()" + JSON.stringify(value))
  },
  onCancel: () => {
    console.info("TimePickerDialog:onCancel()")
  },
  onChange: (value: TimePickerResult) => {
    console.info("TimePickerDialog:onChange()" + JSON.stringify(value))
  }
})
```

### showTextPickerDialog

showTextPickerDialog(options: TextPickerDialogOptions): void

定义文本滑动选择器弹窗并弹出。

Y
yamila 已提交
426 427
**系统能力:** SystemCapability.ArkUI.ArkUI.Full

H
huangdong57 已提交
428 429
**TextPickerDialogOptions参数:**

Y
yamila 已提交
430
| 参数名 | 类型 | 必填 | 说明 |
H
huangdong57 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445
| -------- | -------- | -------- |  -------- |
| range | string[]&nbsp;\|&nbsp;[Resource](../arkui-ts/ts-types.md#resource)\|[TextPickerRangeContent](../arkui-ts/ts-basic-components-textpicker.md#textpickerrangecontent10类型说明)[] | 是 |  设置文本选择器的选择范围。不可设置为空数组,若设置为空数组,则不弹出弹窗。 |
| selected | number | 否 |  设置选中项的索引值。<br>默认值:0 |
| value       | string           | 否    | 设置选中项的文本内容。当设置了selected参数时,该参数不生效。如果设置的value值不在range范围内,则默认取range第一个元素。|
| defaultPickerItemHeight | number \| string | 否 | 设置选择器中选项的高度。 |
| disappearTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中最上和最下两个选项的文本颜色、字号、字体粗细。 |
| textStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置所有选项中除了最上、最下及选中项以外的文本颜色、字号、字体粗细。 |
| selectedTextStyle | [PickerTextStyle](../arkui-ts/ts-basic-components-datepicker.md#pickertextstyle10类型说明) | 否 | 设置选中项的文本颜色、字号、字体粗细。 |
| onAccept | (value: [TextPickerResult](../arkui-ts/ts-methods-textpicker-dialog.md#textpickerresult对象说明)) => void | 否 |  点击弹窗中的“确定”按钮时触发该回调。 |
| onCancel | () => void | 否 | 点击弹窗中的“取消”按钮时触发该回调。 |
| onChange | (value: [TextPickerResult](../arkui-ts/ts-methods-textpicker-dialog.md#textpickerresult对象说明)) => void | 否 |  滑动弹窗中的选择器使当前选中项改变时触发该回调。 |

**示例:**

```ts
L
lixinnan 已提交
446 447 448 449 450 451 452 453 454 455 456 457
{ class setvalue{
  select: number = 2
  set(val:number){
    this.select = val
  }
}
class setvaluearr{
  select: number[] = []
  set(val:number[]){
    this.select = val
  }
}
H
huangdong57 已提交
458 459 460 461 462 463
let fruits: string[] = ['apple1', 'orange2', 'peach3', 'grape4', 'banana5']
uiContext.showTextPickerDialog({
  range: this.fruits,
  selected: this.select,
  onAccept: (value: TextPickerResult) => {
    // 设置select为按下确定按钮时候的选中项index,这样当弹窗再次弹出时显示选中的是上一次确定的选项
L
lixinnan 已提交
464 465 466 467 468
    let setv = new setvalue()
    let setvarr = new setvaluearr()
    if(value.index){
      value.index instanceof Array?setvarr.set(value.index) : setv.set(value.index)
    }
H
huangdong57 已提交
469 470 471 472 473 474 475 476 477 478 479
    console.info("TextPickerDialog:onAccept()" + JSON.stringify(value))
  },
  onCancel: () => {
    console.info("TextPickerDialog:onCancel()")
  },
  onChange: (value: TextPickerResult) => {
    console.info("TextPickerDialog:onChange()" + JSON.stringify(value))
  }
})
```

H
huangdong57 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
### createAnimator

createAnimator(options: AnimatorOptions): AnimatorResult

定义Animator类。

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

**参数:**

| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| options | [AnimatorOptions](./js-apis-animator.md#animatoroptions) | 是    | 定义动画选项。 |

**返回值:**

| 类型                                | 说明            |
| --------------------------------- | ------------- |
| [AnimatorResult](./js-apis-animator.md#animatorresult) | Animator结果接口。 |

**示例:**

```ts
L
lixinnan 已提交
503
import { AnimatorOptions } from '@ohos.animator';
L
lixinnan 已提交
504
let options:AnimatorOptions = {
H
huangdong57 已提交
505 506 507 508 509 510 511 512 513 514 515 516
  duration: 1500,
  easing: "friction",
  delay: 0,
  fill: "forwards",
  direction: "normal",
  iterations: 3,
  begin: 200.0,
  end: 400.0
};
uiContext.createAnimator(options);
```

H
huangdong57 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
### runScopedTask

runScopedTask(callback: () => void): void

在当前UI上下文执行传入的回调函数。

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

**参数:**

| 参数名     | 类型                                  | 必填   | 说明      |
| ------- | ----------------------------------- | ---- | ------- |
| callback | () => void            | 是    | 回调函数 |

**示例:**

```ts
uiContext.runScopedTask(
  () => {
    console.log('Succeeded in runScopedTask');
  }
);
```

H
huangdong57 已提交
541 542 543 544 545 546
## Font

以下API需先使用UIContext中的[getFont()](#getfont)方法获取到Font对象,再通过该对象调用对应方法。

### registerFont

Y
yamila 已提交
547
registerFont(options: font.FontOptions): void
H
huangdong57 已提交
548 549 550 551 552 553 554

在字体管理中注册自定义字体。

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

**参数:**

Y
yamila 已提交
555 556 557
| 参数名  | 类型                                            | 必填 | 说明                   |
| ------- | ----------------------------------------------- | ---- | ---------------------- |
| options | [font.FontOptions](js-apis-font.md#fontoptions) | 是   | 注册的自定义字体信息。 |
H
huangdong57 已提交
558 559 560 561

**示例:**

```ts
L
lixinnan 已提交
562
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
L
lixinnan 已提交
563
let font:Font = uiContext.getFont();
H
huangdong57 已提交
564 565 566 567 568
font.registerFont({
  familyName: 'medium',
  familySrc: '/font/medium.ttf'
});
```
Y
yamila 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
### getStstemFontList

getSystemFontList(): Array\<string> 

获取系统支持的字体名称列表。

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

**返回值:**

| 类型           | 说明               |
| -------------- | ------------------ |
| Array\<string> | 系统的字体名列表。 |

**示例:** 

```ts
L
lixinnan 已提交
586 587
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
let font:Font|undefined = uiContext.getFont();
Y
yamila 已提交
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613
font.getSystemFontList()
```

### getFontByName

getFontByName(fontName: string): font.FontInfo

根据传入的系统字体名称获取系统字体的相关信息。

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

**参数:** 

| 参数名   | 类型   | 必填 | 说明           |
| -------- | ------ | ---- | -------------- |
| fontName | string | 是   | 系统的字体名。 |

**返回值:** 

| 类型                                 | 说明           |
| ------------------------------------ | -------------- |
| [FontInfo](js-apis-font.md#fontinfo) | 字体的详细信息 |

**示例:** 

```ts
L
lixinnan 已提交
614 615
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
let font:Font|undefined = uiContext.getFont();
Y
yamila 已提交
616 617 618
font.getFontByName('Sans Italic')
```

H
huangdong57 已提交
619 620 621 622 623 624
## ComponentUtils

以下API需先使用UIContext中的[getComponentUtils()](#getcomponentutils)方法获取到ComponentUtils对象,再通过该对象调用对应方法。

### getRectangleById

Y
yamila 已提交
625
getRectangleById(id: string): componentUtils.ComponentInfo
H
huangdong57 已提交
626 627 628 629 630 631 632 633 634

获取组件大小、位置、平移缩放旋转及仿射矩阵属性信息。

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

**参数:**

| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
Y
yamila 已提交
635
| id     | string | 是   | 组件唯一标识id。 |
H
huangdong57 已提交
636 637 638 639 640

**返回值:**

| 类型                                                     | 说明                                             |
| -------------------------------------------------------- | ------------------------------------------------ |
641
| [ComponentInfo](js-apis-arkui-componentUtils.md#componentinfo) | 组件大小、位置、平移缩放旋转及仿射矩阵属性信息。 |
H
huangdong57 已提交
642 643 644 645

**示例:**

```ts
L
lixinnan 已提交
646
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
L
lixinnan 已提交
647
let componentUtils:ComponentUtils = uiContext.getComponentUtils();
L
lixinnan 已提交
648 649 650
let modePosition = componentUtils.getRectangleById("onClick");
let localOffsetWidth = modePosition.size.width;
let localOffsetHeight = modePosition.size.height;
H
huangdong57 已提交
651
```
H
huangdong57 已提交
652

653 654 655 656 657 658
## UIInspector

以下API需先使用UIContext中的[getUIInspector()](#getuiinspector)方法获取到UIInspector对象,再通过该对象调用对应方法。

### createComponentObserver

Y
yamila 已提交
659
createComponentObserver(id: string): inspector.ComponentObserver
660 661 662 663 664 665 666 667 668 669 670 671 672

注册组件布局和绘制完成回调通知。

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

**参数:**

| 参数名     | 类型                          | 必填   | 说明          |
| ------- | --------------------------- | ---- | ----------- |
| id | string | 是    | 指定组件id。 |

**返回值:** 

Y
yamila 已提交
673 674
| 类型                                                         | 说明                                               |
| ------------------------------------------------------------ | -------------------------------------------------- |
675 676 677 678 679
| [ComponentObserver](js-apis-arkui-inspector.md#componentobserver) | 组件回调事件监听句柄,用于注册和取消注册监听回调。 |

**示例:**

```ts
L
lixinnan 已提交
680
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
L
lixinnan 已提交
681
let inspector:UIInspector = uiContext.getUIInspector();
682 683 684
let listener = inspector.createComponentObserver('COMPONENT_ID');
```

H
huangdong57 已提交
685 686 687 688 689 690
## MediaQuery

以下API需先使用UIContext中的[getMediaQuery()](#getmediaquery)方法获取到MediaQuery对象,再通过该对象调用对应方法。

### matchMediaSync

Y
yamila 已提交
691
matchMediaSync(condition: string): mediaQuery.MediaQueryListener
H
huangdong57 已提交
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711

设置媒体查询的查询条件,并返回对应的监听句柄。

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

**参数:**

| 参数名       | 类型     | 必填   | 说明                                       |
| --------- | ------ | ---- | ---------------------------------------- |
| condition | string | 是    | 媒体事件的匹配条件,具体可参考[媒体查询语法规则](../../ui/arkts-layout-development-media-query.md#语法规则)。 |

**返回值:**

| 类型                 | 说明                     |
| ------------------ | ---------------------- |
| MediaQueryListener | 媒体事件监听句柄,用于注册和去注册监听回调。 |

**示例:**

```ts
L
lixinnan 已提交
712
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
L
lixinnan 已提交
713
let mediaquery: MediaQuery = uiContext.getMediaQuery();
H
huangdong57 已提交
714 715 716 717 718 719 720 721 722
let listener = mediaquery.matchMediaSync('(orientation: landscape)'); //监听横屏事件
```

## Router

以下API需先使用UIContext中的[getRouter()](#getrouter)方法获取到Router对象,再通过该对象调用对应方法。

### pushUrl

Y
yamila 已提交
723
pushUrl(options: router.RouterOptions): Promise&lt;void&gt;
H
huangdong57 已提交
724 725 726 727 728 729 730

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

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

**参数:**

Y
yamila 已提交
731 732 733
| 参数名  | 类型                                                    | 必填 | 说明               |
| ------- | ------------------------------------------------------- | ---- | ------------------ |
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是   | 跳转页面描述信息。 |
H
huangdong57 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753

**返回值:**

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

**错误码:**

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

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

**示例:**

```ts
L
lixinnan 已提交
754 755
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
756
let router = uiContext.getRouter();
L
lixinnan 已提交
757 758 759 760 761 762 763 764
try {
  router.pushUrl({
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huangdong57 已提交
765 766
    }
  })
L
lixinnan 已提交
767 768 769 770 771
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`pushUrl failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
772 773 774 775
```

### pushUrl

Y
yamila 已提交
776
pushUrl(options: router.RouterOptions, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
777 778 779 780 781 782 783 784 785

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
Y
yamila 已提交
786
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是    | 跳转页面描述信息。 |
H
huangdong57 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

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

**示例:**

```ts
L
lixinnan 已提交
802 803
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
804 805 806 807 808 809 810 811 812
let router = uiContext.getRouter();
router.pushUrl({
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
L
lixinnan 已提交
813
}, (err: Error) => {
H
huangdong57 已提交
814
  if (err) {
L
lixinnan 已提交
815 816 817
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`pushUrl failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
818 819 820 821 822 823 824 825
    return;
  }
  console.info('pushUrl success');
})
```

### pushUrl

Y
yamila 已提交
826
pushUrl(options: router.RouterOptions, mode: router.RouterMode): Promise&lt;void&gt;
H
huangdong57 已提交
827 828 829 830 831 832 833

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

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

**参数:**

Y
yamila 已提交
834 835 836 837
| 参数名  | 类型                                                    | 必填 | 说明                 |
| ------- | ------------------------------------------------------- | ---- | -------------------- |
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是   | 跳转页面描述信息。   |
| mode    | [router.RouterMode](js-apis-router.md#routermode9)      | 是   | 跳转页面使用的模式。 |
H
huangdong57 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857

**返回值:**

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

**错误码:**

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

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

**示例:**

```ts
L
lixinnan 已提交
858 859 860 861 862 863 864 865
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
L
lixinnan 已提交
866
try {
L
lixinnan 已提交
867
  routerF.pushUrl({
L
lixinnan 已提交
868 869 870 871 872 873
    url: 'pages/routerpage2',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huangdong57 已提交
874
    }
L
lixinnan 已提交
875
  }, rtm.Standard)
L
lixinnan 已提交
876 877 878 879 880
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`pushUrl failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
881 882 883 884
```

### pushUrl

Y
yamila 已提交
885
pushUrl(options: router.RouterOptions, mode: router.RouterMode, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
886 887 888 889 890 891 892 893 894

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
Y
yamila 已提交
895 896
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是    | 跳转页面描述信息。  |
| mode    | [router.RouterMode](js-apis-router.md#routermode9) | 是    | 跳转页面使用的模式。 |
H
huangdong57 已提交
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

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

**示例:**

```ts
L
lixinnan 已提交
912 913 914 915 916 917 918 919 920
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
routerF.pushUrl({
H
huangdong57 已提交
921 922 923 924 925 926 927
  url: 'pages/routerpage2',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
L
lixinnan 已提交
928
}, rtm.Standard, (err) => {
H
huangdong57 已提交
929
  if (err) {
L
lixinnan 已提交
930 931 932
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`pushUrl failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
933 934 935 936 937 938 939 940
    return;
  }
  console.info('pushUrl success');
})
```

### replaceUrl

Y
yamila 已提交
941
replaceUrl(options: router.RouterOptions): Promise&lt;void&gt;
H
huangdong57 已提交
942 943 944

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

Y
yamila 已提交
945
**系统能力:** SystemCapability.ArkUI.ArkUI.Full
H
huangdong57 已提交
946 947 948

**参数:**

Y
yamila 已提交
949 950 951
| 参数名  | 类型                                                    | 必填 | 说明               |
| ------- | ------------------------------------------------------- | ---- | ------------------ |
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是   | 替换页面描述信息。 |
H
huangdong57 已提交
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970

**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |

**示例:**

```ts
L
lixinnan 已提交
971 972
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
973
let router = uiContext.getRouter();
L
lixinnan 已提交
974 975 976 977 978 979
try {
  router.replaceUrl({
    url: 'pages/detail',
    params: {
      data1: 'message'
    }
H
huangdong57 已提交
980
  })
L
lixinnan 已提交
981 982 983 984 985
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`replaceUrl failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
986 987 988 989
```

### replaceUrl

Y
yamila 已提交
990
replaceUrl(options: router.RouterOptions, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
991 992 993

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

Y
yamila 已提交
994
**系统能力:** SystemCapability.ArkUI.ArkUI.Full
H
huangdong57 已提交
995 996 997 998 999

**参数:**

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
Y
yamila 已提交
1000
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是   | 替换页面描述信息。 |
H
huangdong57 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1015 1016
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
1017 1018 1019 1020 1021 1022
let router = uiContext.getRouter();
router.replaceUrl({
  url: 'pages/detail',
  params: {
    data1: 'message'
  }
L
lixinnan 已提交
1023
}, (err: Error) => {
H
huangdong57 已提交
1024
  if (err) {
L
lixinnan 已提交
1025 1026 1027
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`replaceUrl failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1028 1029 1030 1031 1032 1033 1034 1035
    return;
  }
  console.info('replaceUrl success');
})
```

### replaceUrl

Y
yamila 已提交
1036
replaceUrl(options: router.RouterOptions, mode: router.RouterMode): Promise&lt;void&gt;
H
huangdong57 已提交
1037 1038 1039

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

Y
yamila 已提交
1040
**系统能力:** SystemCapability.ArkUI.ArkUI.Full
H
huangdong57 已提交
1041 1042 1043

**参数:**

Y
yamila 已提交
1044 1045 1046 1047
| 参数名  | 类型                                                    | 必填 | 说明                 |
| ------- | ------------------------------------------------------- | ---- | -------------------- |
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是   | 替换页面描述信息。   |
| mode    | [router.RouterMode](js-apis-router.md#routermode9)      | 是   | 跳转页面使用的模式。 |
H
huangdong57 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066

**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if can not get the delegate, only throw in standard system. |
| 200002    | if the uri is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1067 1068 1069 1070 1071 1072 1073 1074
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
Y
yamila 已提交
1075
try {
L
lixinnan 已提交
1076
  routerF.replaceUrl({
Y
yamila 已提交
1077 1078 1079 1080
    url: 'pages/detail',
    params: {
      data1: 'message'
    }
L
lixinnan 已提交
1081
  }, rtm.Standard)
Y
yamila 已提交
1082
} catch (err) {
L
lixinnan 已提交
1083 1084 1085
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`replaceUrl failed, code is ${code}, message is ${message}`);
Y
yamila 已提交
1086
}
H
huangdong57 已提交
1087 1088 1089 1090
```

### replaceUrl

Y
yamila 已提交
1091
replaceUrl(options: router.RouterOptions, mode: router.RouterMode, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
1092 1093 1094

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

Y
yamila 已提交
1095
**系统能力:** SystemCapability.ArkUI.ArkUI.Full
H
huangdong57 已提交
1096 1097 1098 1099 1100

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
Y
yamila 已提交
1101 1102
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 是    | 替换页面描述信息。  |
| mode    | [router.RouterMode](js-apis-router.md#routermode9) | 是    | 跳转页面使用的模式。 |
H
huangdong57 已提交
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found, only throw in standard system. |
| 200002    | if the uri is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1117 1118 1119 1120 1121 1122 1123 1124 1125
import { ComponentUtils, Font, PromptAction, Router, UIInspector,  MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
routerF.replaceUrl({
H
huangdong57 已提交
1126 1127 1128 1129
  url: 'pages/detail',
  params: {
    data1: 'message'
  }
L
lixinnan 已提交
1130
}, rtm.Standard, (err: Error) => {
H
huangdong57 已提交
1131
  if (err) {
L
lixinnan 已提交
1132 1133 1134
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`replaceUrl failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1135 1136 1137 1138 1139 1140
    return;
  }
  console.info('replaceUrl success');
});
```

H
huangdong57 已提交
1141 1142
### pushNamedRoute

Y
yamila 已提交
1143
pushNamedRoute(options: router.NamedRouterOptions): Promise&lt;void&gt;
H
huangdong57 已提交
1144 1145 1146 1147 1148 1149 1150

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

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

**参数:**

Y
yamila 已提交
1151 1152 1153
| 参数名  | 类型                                                         | 必填 | 说明               |
| ------- | ------------------------------------------------------------ | ---- | ------------------ |
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是   | 跳转页面描述信息。 |
H
huangdong57 已提交
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| 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
L
lixinnan 已提交
1174 1175
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
1176
let router = uiContext.getRouter();
L
lixinnan 已提交
1177 1178 1179 1180 1181 1182 1183 1184
try {
  router.pushNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huangdong57 已提交
1185 1186
    }
  })
L
lixinnan 已提交
1187 1188 1189 1190 1191
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`pushNamedRoute failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
1192 1193 1194 1195
```

### pushNamedRoute

Y
yamila 已提交
1196
pushNamedRoute(options: router.NamedRouterOptions, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
1197 1198 1199 1200 1201 1202 1203 1204 1205

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明        |
| ------- | ------------------------------- | ---- | --------- |
Y
yamila 已提交
1206
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是    | 跳转页面描述信息。 |
H
huangdong57 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
| 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
L
lixinnan 已提交
1222 1223
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
1224 1225 1226 1227 1228 1229 1230 1231 1232
let router = uiContext.getRouter();
router.pushNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
L
lixinnan 已提交
1233
}, (err: Error) => {
H
huangdong57 已提交
1234
  if (err) {
L
lixinnan 已提交
1235 1236 1237
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`pushNamedRoute failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1238 1239 1240 1241 1242 1243 1244
    return;
  }
  console.info('pushNamedRoute success');
})
```
### pushNamedRoute

Y
yamila 已提交
1245
pushNamedRoute(options: router.NamedRouterOptions, mode: router.RouterMode): Promise&lt;void&gt;
H
huangdong57 已提交
1246 1247 1248 1249 1250 1251 1252

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

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

**参数:**

Y
yamila 已提交
1253 1254 1255 1256
| 参数名  | 类型                                                         | 必填 | 说明                 |
| ------- | ------------------------------------------------------------ | ---- | -------------------- |
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是   | 跳转页面描述信息。   |
| mode    | [router.RouterMode](js-apis-router.md#routermode9)           | 是   | 跳转页面使用的模式。 |
H
huangdong57 已提交
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276

**返回值:**

| 类型                | 说明        |
| ------------------- | --------- |
| 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
L
lixinnan 已提交
1277 1278 1279 1280 1281 1282 1283 1284
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
L
lixinnan 已提交
1285
try {
L
lixinnan 已提交
1286
  routerF.pushNamedRoute({
L
lixinnan 已提交
1287 1288 1289 1290 1291 1292
    name: 'myPage',
    params: {
      data1: 'message',
      data2: {
        data3: [123, 456, 789]
      }
H
huangdong57 已提交
1293
    }
L
lixinnan 已提交
1294
  }, rtm.Standard)
L
lixinnan 已提交
1295 1296 1297 1298 1299
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`pushNamedRoute failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
1300 1301 1302 1303
```

### pushNamedRoute

Y
yamila 已提交
1304
pushNamedRoute(options: router.NamedRouterOptions, mode: router.RouterMode, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
Y
yamila 已提交
1314 1315
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是    | 跳转页面描述信息。  |
| mode    | [router.RouterMode](js-apis-router.md#routermode9) | 是    | 跳转页面使用的模式。 |
H
huangdong57 已提交
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330
| 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
L
lixinnan 已提交
1331 1332 1333 1334 1335 1336 1337 1338 1339
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
routerF.pushNamedRoute({
H
huangdong57 已提交
1340 1341 1342 1343 1344 1345 1346
  name: 'myPage',
  params: {
    data1: 'message',
    data2: {
      data3: [123, 456, 789]
    }
  }
L
lixinnan 已提交
1347
}, rtm.Standard, (err: Error) => {
H
huangdong57 已提交
1348
  if (err) {
L
lixinnan 已提交
1349 1350 1351
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`pushNamedRoute failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1352 1353 1354 1355 1356 1357 1358 1359
    return;
  }
  console.info('pushNamedRoute success');
})
```

### replaceNamedRoute

Y
yamila 已提交
1360
replaceNamedRoute(options: router.NamedRouterOptions): Promise&lt;void&gt;
H
huangdong57 已提交
1361 1362 1363 1364 1365 1366 1367

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

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

**参数:**

Y
yamila 已提交
1368 1369 1370
| 参数名  | 类型                                                         | 必填 | 说明               |
| ------- | ------------------------------------------------------------ | ---- | ------------------ |
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是   | 替换页面描述信息。 |
H
huangdong57 已提交
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383

**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
1384
| 100001    | if UI execution context not found, only throw in standard system. |
H
huangdong57 已提交
1385 1386 1387 1388 1389
| 100004    | if the named route is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1390 1391
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
1392
let router = uiContext.getRouter();
L
lixinnan 已提交
1393 1394 1395 1396 1397 1398
try {
  router.replaceNamedRoute({
    name: 'myPage',
    params: {
      data1: 'message'
    }
H
huangdong57 已提交
1399
  })
L
lixinnan 已提交
1400 1401 1402 1403 1404
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`replaceNamedRoute failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
1405 1406 1407 1408
```

### replaceNamedRoute

Y
yamila 已提交
1409
replaceNamedRoute(options: router.NamedRouterOptions, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
1410 1411 1412 1413 1414 1415 1416 1417 1418

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

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

**参数:**

| 参数名  | 类型                            | 必填 | 说明               |
| ------- | ------------------------------- | ---- | ------------------ |
Y
yamila 已提交
1419
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是   | 替换页面描述信息。 |
H
huangdong57 已提交
1420 1421 1422 1423 1424 1425 1426 1427
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
1428
| 100001    | if UI execution context not found, only throw in standard system. |
H
huangdong57 已提交
1429 1430 1431 1432 1433
| 100004    | if the named route is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1434 1435
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
H
huangdong57 已提交
1436 1437 1438 1439 1440 1441
let router = uiContext.getRouter();
router.replaceNamedRoute({
  name: 'myPage',
  params: {
    data1: 'message'
  }
L
lixinnan 已提交
1442
}, (err: Error) => {
H
huangdong57 已提交
1443
  if (err) {
L
lixinnan 已提交
1444 1445 1446
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`replaceNamedRoute failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1447 1448 1449 1450 1451 1452 1453 1454
    return;
  }
  console.info('replaceNamedRoute success');
})
```

### replaceNamedRoute

Y
yamila 已提交
1455
replaceNamedRoute(options: router.NamedRouterOptions, mode: router.RouterMode): Promise&lt;void&gt;
H
huangdong57 已提交
1456 1457 1458 1459 1460 1461 1462

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

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

**参数:**

Y
yamila 已提交
1463 1464 1465 1466
| 参数名  | 类型                                                         | 必填 | 说明                 |
| ------- | ------------------------------------------------------------ | ---- | -------------------- |
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是   | 替换页面描述信息。   |
| mode    | [router.RouterMode](js-apis-router.md#routermode9)           | 是   | 跳转页面使用的模式。 |
H
huangdong57 已提交
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480


**返回值:**

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

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
1481
| 100001    | if can not get the delegate, only throw in standard system. |
H
huangdong57 已提交
1482 1483 1484 1485 1486
| 100004    | if the named route is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1487 1488 1489 1490 1491 1492 1493 1494
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
L
lixinnan 已提交
1495
try {
L
lixinnan 已提交
1496
  routerF.replaceNamedRoute({
L
lixinnan 已提交
1497 1498 1499 1500
    name: 'myPage',
    params: {
      data1: 'message'
    }
L
lixinnan 已提交
1501
  }, rtm.Standard)
L
lixinnan 已提交
1502 1503 1504 1505 1506
} catch (err) {
  let message = (err as BusinessError).message;
  let code = (err as BusinessError).code;
  console.error(`replaceNamedRoute failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
1507 1508 1509 1510
```

### replaceNamedRoute

Y
yamila 已提交
1511
replaceNamedRoute(options: router.NamedRouterOptions, mode: router.RouterMode, callback: AsyncCallback&lt;void&gt;): void
H
huangdong57 已提交
1512 1513 1514 1515 1516 1517 1518 1519 1520

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

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

**参数:**

| 参数名     | 类型                              | 必填   | 说明         |
| ------- | ------------------------------- | ---- | ---------- |
Y
yamila 已提交
1521 1522
| options | [router.NamedRouterOptions](js-apis-router.md#namedrouteroptions10) | 是    | 替换页面描述信息。  |
| mode    | [router.RouterMode](js-apis-router.md#routermode9) | 是    | 跳转页面使用的模式。 |
H
huangdong57 已提交
1523 1524 1525 1526 1527 1528 1529 1530
| callback | AsyncCallback&lt;void&gt;      | 是   | 异常响应回调。   |

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
Y
yamila 已提交
1531
| 100001    | if UI execution context not found, only throw in standard system. |
H
huangdong57 已提交
1532 1533 1534 1535 1536
| 100004    | if the named route is not exist. |

**示例:**

```ts
L
lixinnan 已提交
1537 1538 1539 1540 1541 1542 1543 1544 1545
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
import router from '@ohos.router';
let routerF:Router = uiContext.getRouter();
class routerTmp{
  Standard:router.RouterMode = router.RouterMode.Standard
}
let rtm:routerTmp = new routerTmp()
routerF.replaceNamedRoute({
H
huangdong57 已提交
1546 1547 1548 1549
  name: 'myPage',
  params: {
    data1: 'message'
  }
L
lixinnan 已提交
1550
}, rtm.Standard, (err: Error) => {
H
huangdong57 已提交
1551
  if (err) {
L
lixinnan 已提交
1552 1553 1554
    let message = (err as BusinessError).message;
    let code = (err as BusinessError).code;
    console.error(`replaceNamedRoute failed, code is ${code}, message is ${message}`);
H
huangdong57 已提交
1555 1556 1557 1558 1559 1560
    return;
  }
  console.info('replaceNamedRoute success');
});
```

H
huangdong57 已提交
1561 1562
### back

Y
yamila 已提交
1563
back(options?: router.RouterOptions ): void
H
huangdong57 已提交
1564 1565 1566 1567 1568 1569 1570

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

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

**参数:**

Y
yamila 已提交
1571 1572
| 参数名  | 类型                                                    | 必填 | 说明                                                         |
| ------- | ------------------------------------------------------- | ---- | ------------------------------------------------------------ |
Y
yamila 已提交
1573
| options | [router.RouterOptions](js-apis-router.md#routeroptions) | 否   | 返回页面描述信息,其中参数url指路由跳转时会返回到指定url的界面,如果页面栈上没有url页面,则不响应该情况。如果url未设置,则返回上一页,页面不会重新构建,页面栈里面的page不会回收,出栈后会被回收。 |
H
huangdong57 已提交
1574 1575 1576 1577

**示例:**

```ts
L
lixinnan 已提交
1578 1579
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1580
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
router.back({url:'pages/detail'});    
```

### clear

clear(): void

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

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

**示例:**

```ts
L
lixinnan 已提交
1595 1596
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1597
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617
router.clear();    
```

### getLength

getLength(): string

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

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

**返回值:**

| 类型     | 说明                 |
| ------ | ------------------ |
| string | 页面数量,页面栈支持最大数值是32。 |

**示例:**

```ts
L
lixinnan 已提交
1618 1619
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1620
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1621 1622 1623 1624 1625 1626
let size = router.getLength();        
console.log('pages stack size = ' + size);    
```

### getState

Y
yamila 已提交
1627
getState(): router.RouterState
H
huangdong57 已提交
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641

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

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

**返回值:**

| 类型                          | 说明      |
| --------------------------- | ------- |
| [RouterState](js-apis-router.md#routerstate) | 页面状态信息。 |

**示例:**

```ts
L
lixinnan 已提交
1642 1643
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1644
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1645 1646 1647 1648 1649 1650 1651 1652
let page = router.getState();
console.log('current index = ' + page.index);
console.log('current name = ' + page.name);
console.log('current path = ' + page.path);
```

### showAlertBeforeBackPage

Y
yamila 已提交
1653
showAlertBeforeBackPage(options: router.EnableAlertOptions): void
H
huangdong57 已提交
1654 1655 1656 1657 1658 1659 1660

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

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

**参数:**

Y
yamila 已提交
1661 1662 1663
| 参数名  | 类型                                                         | 必填 | 说明               |
| ------- | ------------------------------------------------------------ | ---- | ------------------ |
| options | [router.EnableAlertOptions](js-apis-router.md#enablealertoptions) | 是   | 文本弹窗信息描述。 |
H
huangdong57 已提交
1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675

**错误码:**

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

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1676 1677
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1678 1679 1680 1681 1682 1683 1684 1685 1686 1687
let router: Router = uiContext.getRouter();
try {
  router.showAlertBeforeBackPage({            
    message: 'Message Info'        
  });
} catch(error) {
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showAlertBeforeBackPage failed, code is ${code}, message is ${message}`);
}
H
huangdong57 已提交
1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
```

### hideAlertBeforeBackPage

hideAlertBeforeBackPage(): void

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

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

**示例:**

```ts
L
lixinnan 已提交
1701 1702
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1703
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
router.hideAlertBeforeBackPage();    
```

### getParams

getParams(): Object

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

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

**返回值:**

| 类型   | 说明                               |
| ------ | ---------------------------------- |
| object | 发起跳转的页面往当前页传入的参数。 |

**示例:**

```ts
L
lixinnan 已提交
1724 1725
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1726
let router: Router = uiContext.getRouter();
H
huangdong57 已提交
1727 1728 1729 1730 1731 1732 1733 1734 1735
router.getParams();
```

## PromptAction

以下API需先使用UIContext中的[getPromptAction()](#getpromptaction)方法获取到PromptAction对象,再通过该对象调用对应方法。

### showToast

Y
yamila 已提交
1736
showToast(options: promptAction.ShowToastOptions): void
H
huangdong57 已提交
1737 1738 1739 1740 1741 1742 1743

创建并显示文本提示框。

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

**参数:**

Y
yamila 已提交
1744 1745 1746
| 参数名  | 类型                                                         | 必填 | 说明           |
| ------- | ------------------------------------------------------------ | ---- | -------------- |
| options | [promptAction.ShowToastOptions](js-apis-promptAction.md#showtoastoptions) | 是   | 文本弹窗选项。 |
H
huangdong57 已提交
1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758

**错误码:**

以下错误码的详细介绍请参见[ohos.promptAction(弹窗)](../errorcodes/errorcode-promptAction.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1759 1760
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1761
let promptAction: PromptAction = uiContext.getPromptAction();
H
huangdong57 已提交
1762 1763 1764 1765 1766 1767
try {
  promptAction.showToast({            
    message: 'Message Info',
    duration: 2000 
  });
} catch (error) {
L
lixinnan 已提交
1768 1769 1770
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showToast args error code is ${code}, message is ${message}`);
H
huangdong57 已提交
1771 1772 1773 1774 1775
};
```

### showDialog

Y
yamila 已提交
1776
showDialog(options: promptAction.ShowDialogOptions, callback: AsyncCallback&lt;promptAction.ShowDialogSuccessResponse&gt;): void
H
huangdong57 已提交
1777 1778 1779 1780 1781 1782 1783

创建并显示对话框,对话框响应结果异步返回。

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

**参数:**

Y
yamila 已提交
1784 1785 1786 1787
| 参数名   | 类型                                                         | 必填 | 说明                     |
| -------- | ------------------------------------------------------------ | ---- | ------------------------ |
| options  | [promptAction.ShowDialogOptions](js-apis-promptAction.md#showdialogoptions) | 是   | 页面显示对话框信息描述。 |
| callback | AsyncCallback&lt;[promptAction.ShowDialogSuccessResponse](js-apis-promptAction.md#showdialogsuccessresponse)&gt; | 是   | 对话框响应结果回调。     |
H
huangdong57 已提交
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799

**错误码:**

以下错误码的详细介绍请参见[ohos.promptAction(弹窗)](../errorcodes/errorcode-promptAction.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1800 1801
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1802 1803 1804 1805 1806
class buttonsMoabl {
  text: string = ""
  color: string = ""
}
let promptAction: PromptAction = uiContext.getPromptAction();
H
huangdong57 已提交
1807 1808 1809 1810 1811 1812 1813 1814
try {
  promptAction.showDialog({
    title: 'showDialog Title Info',
    message: 'Message Info',
    buttons: [
      {
        text: 'button1',
        color: '#000000'
L
lixinnan 已提交
1815
      } as buttonsMoabl,
H
huangdong57 已提交
1816 1817 1818
      {
        text: 'button2',
        color: '#000000'
L
lixinnan 已提交
1819
      } as buttonsMoabl
H
huangdong57 已提交
1820 1821 1822 1823 1824 1825 1826 1827 1828
    ]
  }, (err, data) => {
    if (err) {
      console.info('showDialog err: ' + err);
      return;
    }
    console.info('showDialog success callback, click button: ' + data.index);
  });
} catch (error) {
L
lixinnan 已提交
1829 1830 1831
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showDialog args error code is ${code}, message is ${message}`);
H
huangdong57 已提交
1832 1833 1834 1835 1836
};
```

### showDialog

Y
yamila 已提交
1837
showDialog(options: promptAction.ShowDialogOptions): Promise&lt;promptAction.ShowDialogSuccessResponse&gt;
H
huangdong57 已提交
1838 1839 1840 1841 1842 1843 1844

创建并显示对话框,对话框响应后同步返回结果。

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

**参数:**

Y
yamila 已提交
1845 1846 1847
| 参数名  | 类型                                                         | 必填 | 说明         |
| ------- | ------------------------------------------------------------ | ---- | ------------ |
| options | [promptAction.ShowDialogOptions](js-apis-promptAction.md#showdialogoptions) | 是   | 对话框选项。 |
H
huangdong57 已提交
1848 1849 1850

**返回值:**

Y
yamila 已提交
1851 1852 1853
| 类型                                                         | 说明             |
| ------------------------------------------------------------ | ---------------- |
| Promise&lt;[promptAction.ShowDialogSuccessResponse](js-apis-promptAction.md#showdialogsuccessresponse)&gt; | 对话框响应结果。 |
H
huangdong57 已提交
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865

**错误码:**

以下错误码的详细介绍请参见[ohos.promptAction(弹窗)](../errorcodes/errorcode-promptAction.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1866 1867
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1868
let promptAction: PromptAction = uiContext.getPromptAction();
H
huangdong57 已提交
1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
try {
  promptAction.showDialog({
    title: 'Title Info',
    message: 'Message Info',
    buttons: [
      {
        text: 'button1',
        color: '#000000'
      },
      {
        text: 'button2',
        color: '#000000'
      }
    ],
  })
    .then(data => {
      console.info('showDialog success, click button: ' + data.index);
    })
L
lixinnan 已提交
1887
    .catch((err:Error) => {
H
huangdong57 已提交
1888 1889 1890
      console.info('showDialog error: ' + err);
    })
} catch (error) {
L
lixinnan 已提交
1891 1892 1893
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showDialog args error code is ${code}, message is ${message}`);
H
huangdong57 已提交
1894 1895 1896 1897 1898
};
```

### showActionMenu

Y
yamila 已提交
1899
showActionMenu(options: promptAction.ActionMenuOptions, callback:promptAction.ActionMenuSuccessResponse):void
H
huangdong57 已提交
1900 1901 1902 1903 1904 1905 1906

创建并显示操作菜单,菜单响应结果异步返回。

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

**参数:**

Y
yamila 已提交
1907 1908 1909
| 参数名   | 类型                                                         | 必填 | 说明               |
| -------- | ------------------------------------------------------------ | ---- | ------------------ |
| options  | [promptAction.ActionMenuOptions](js-apis-promptAction.md#actionmenuoptions) | 是   | 操作菜单选项。     |
Y
yamila 已提交
1910
| callback | [promptAction.ActionMenuSuccessResponse](js-apis-promptAction.md#actionmenusuccessresponse) | 是   | 菜单响应结果回调。 |
H
huangdong57 已提交
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922

**错误码:**

以下错误码的详细介绍请参见[ohos.promptAction(弹窗)](../errorcodes/errorcode-promptAction.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import promptAction from '@ohos.promptAction';
import { BusinessError } from '@ohos.base';
class buttonsMoabl {
  text: string = ""
  color: string = ""
}
class dataR{
  err:Error = new Error;
  data:promptAction.ActionMenuSuccessResponse | undefined = undefined;
}
let dataAMSR:dataR = new dataR()
let promptActionF: PromptAction = uiContext.getPromptAction();
H
huangdong57 已提交
1936
try {
L
lixinnan 已提交
1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954
  if(dataAMSR.data){
    promptActionF.showActionMenu({
      title: 'Title Info',
      buttons: [
        {
          text: 'item1',
          color: '#666666'
        } as buttonsMoabl,
        {
          text: 'item2',
          color: '#000000'
        } as buttonsMoabl
      ]
    }, (dataAMSR.data))
    if (dataAMSR.err) {
      console.info('showActionMenu err: ' + dataAMSR.err);
    }else{
      console.info('showActionMenu success callback, click button: ' + dataAMSR.data.index);
H
huangdong57 已提交
1955
    }
L
lixinnan 已提交
1956
  }
H
huangdong57 已提交
1957
} catch (error) {
L
lixinnan 已提交
1958 1959 1960
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showActionMenu args error code is ${code}, message is ${message}`);
H
huangdong57 已提交
1961 1962 1963 1964 1965
};
```

### showActionMenu

Y
yamila 已提交
1966
showActionMenu(options: promptAction.ActionMenuOptions): Promise&lt;promptAction.ActionMenuSuccessResponse&gt;
H
huangdong57 已提交
1967 1968 1969 1970 1971 1972 1973

创建并显示操作菜单,菜单响应后同步返回结果。

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

**参数:**

Y
yamila 已提交
1974 1975 1976
| 参数名  | 类型                                                         | 必填 | 说明           |
| ------- | ------------------------------------------------------------ | ---- | -------------- |
| options | [promptAction.ActionMenuOptions](js-apis-promptAction.md#actionmenuoptions) | 是   | 操作菜单选项。 |
H
huangdong57 已提交
1977 1978 1979

**返回值:**

Y
yamila 已提交
1980 1981 1982
| 类型                                                         | 说明           |
| ------------------------------------------------------------ | -------------- |
| Promise&lt;[promptAction.ActionMenuSuccessResponse](js-apis-promptAction.md#actionmenusuccessresponse)&gt; | 菜单响应结果。 |
H
huangdong57 已提交
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994

**错误码:**

以下错误码的详细介绍请参见[ohos.promptAction(弹窗)](../errorcodes/errorcode-promptAction.md)错误码。

| 错误码ID   | 错误信息 |
| --------- | ------- |
| 100001    | if UI execution context not found. |

**示例:**

```ts
L
lixinnan 已提交
1995 1996
import { ComponentUtils, Font, PromptAction, Router, UIInspector, MediaQuery } from '@ohos.arkui.UIContext';
import { BusinessError } from '@ohos.base';
L
lixinnan 已提交
1997
let promptAction: PromptAction = uiContext.getPromptAction();
H
huangdong57 已提交
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
try {
  promptAction.showActionMenu({
    title: 'showActionMenu Title Info',
    buttons: [
      {
        text: 'item1',
        color: '#666666'
      },
      {
        text: 'item2',
        color: '#000000'
      },
    ]
  })
    .then(data => {
      console.info('showActionMenu success, click button: ' + data.index);
    })
L
lixinnan 已提交
2015
    .catch((err:Error) => {
H
huangdong57 已提交
2016 2017 2018
      console.info('showActionMenu error: ' + err);
    })
} catch (error) {
L
lixinnan 已提交
2019 2020 2021
  let message = (error as BusinessError).message;
  let code = (error as BusinessError).code;
  console.error(`showActionMenu args error code is ${code}, message is ${message}`);
H
huangdong57 已提交
2022
};
L
lixinnan 已提交
2023
```