js-apis-promptAction.md 13.4 KB
Newer Older
Z
zengyawen 已提交
1
# @ohos.promptAction (弹窗)
Z
zhaoxinyu 已提交
2 3 4 5 6 7

创建并显示文本提示框、对话框和操作菜单。

> **说明:**
>
> 本模块首批接口从API version 9开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
Y
yamila 已提交
8
>
Y
yamila 已提交
9
> 该模块不支持在[UIAbility](./js-apis-app-ability-uiAbility.md)的文件声明处使用,即不能在UIAbility的生命周期中调用,需要在创建组件实例后使用。
H
huangdong57 已提交
10 11 12 13
>
> 本模块功能依赖UI的执行上下文,不可在UI上下文不明确的地方使用,参见[UIContext](./js-apis-arkui-UIContext.md#uicontext)说明。
>
> 从API version 10开始,可以通过使用[UIContext](./js-apis-arkui-UIContext.md#uicontext)中的[getPromptAction](./js-apis-arkui-UIContext.md#getpromptaction)方法获取当前UI上下文关联的[PromptAction](./js-apis-arkui-UIContext.md#promptaction)对象。
Z
zhaoxinyu 已提交
14 15 16

## 导入模块

L
lixinnan 已提交
17 18 19
```ts
import promptAction from '@ohos.promptAction';
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
```

## promptAction.showToast

showToast(options: ShowToastOptions): void

创建并显示文本提示框。

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

**参数:**

| 参数名     | 类型                                    | 必填   | 说明      |
| ------- | ------------------------------------- | ---- | ------- |
| options | [ShowToastOptions](#showtoastoptions) | 是    | 文本弹窗选项。 |

**错误码:**

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

40
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
41
| --------- | ------- |
L
luoying_ace_admin 已提交
42
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
43 44 45

**示例:**

L
lixinnan 已提交
46 47 48
```ts
import promptAction from '@ohos.promptAction'
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
49 50 51
try {
  promptAction.showToast({            
    message: 'Message Info',
Y
yamila 已提交
52
    duration: 2000 
Z
zhaoxinyu 已提交
53 54
  });
} catch (error) {
L
lixinnan 已提交
55 56 57
  let message = (error as BusinessError).message
  let code = (error as BusinessError).code
  console.error(`showToast args error code is ${code}, message is ${message}`);
Z
zhaoxinyu 已提交
58 59 60 61 62 63 64 65 66 67 68 69
};

```

![zh-cn_image_0001](figures/zh-cn_image_0001.gif)

## ShowToastOptions

文本提示框的选项。

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

Y
yamila 已提交
70 71 72 73 74
| 名称     | 类型                                                         | 必填 | 说明                                                         |
| -------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| message  | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 是   | 显示的文本信息。<br>**说明:** <br/>默认字体为'Harmony Sans',不支持设置其他字体。 |
| duration | number                                                       | 否   | 默认值1500ms,取值区间:1500ms-10000ms。若小于1500ms则取默认值,若大于10000ms则取上限值10000ms。 |
| bottom   | string\| number                                              | 否   | 设置弹窗边框距离屏幕底部的位置。<br>默认值:80vp             |
Z
zhaoxinyu 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

## promptAction.showDialog

showDialog(options: ShowDialogOptions): Promise&lt;ShowDialogSuccessResponse&gt;

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

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

**参数:**

| 参数名     | 类型                                      | 必填   | 说明     |
| ------- | --------------------------------------- | ---- | ------ |
| options | [ShowDialogOptions](#showdialogoptions) | 是    | 对话框选项。 |

**返回值:**

| 类型                                       | 说明       |
| ---------------------------------------- | -------- |
| Promise&lt;[ShowDialogSuccessResponse](#showdialogsuccessresponse)&gt; | 对话框响应结果。 |

**错误码:**

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

100
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
101
| --------- | ------- |
L
luoying_ace_admin 已提交
102
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
103 104 105

**示例:**

L
lixinnan 已提交
106 107 108
```ts
import promptAction from '@ohos.promptAction'
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
109 110 111 112 113 114 115
try {
  promptAction.showDialog({
    title: 'Title Info',
    message: 'Message Info',
    buttons: [
      {
        text: 'button1',
Y
yamila 已提交
116
        color: '#000000'
Z
zhaoxinyu 已提交
117 118 119
      },
      {
        text: 'button2',
Y
yamila 已提交
120
        color: '#000000'
Z
zhaoxinyu 已提交
121 122 123 124 125 126
      }
    ],
  })
    .then(data => {
      console.info('showDialog success, click button: ' + data.index);
    })
L
lixinnan 已提交
127
    .catch((err:Error) => {
Z
zhaoxinyu 已提交
128 129 130
      console.info('showDialog error: ' + err);
    })
} catch (error) {
L
lixinnan 已提交
131 132 133
  let message = (error as BusinessError).message
  let code = (error as BusinessError).code
  console.error(`showDialog args error code is ${code}, message is ${message}`);
Z
zhaoxinyu 已提交
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
};
```

![zh-cn_image_0002](figures/zh-cn_image_0002.gif)

## promptAction.showDialog

showDialog(options: ShowDialogOptions, callback: AsyncCallback&lt;ShowDialogSuccessResponse&gt;):void 

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

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

**参数:**

| 参数名      | 类型                                       | 必填   | 说明           |
| -------- | ---------------------------------------- | ---- | ------------ |
| options  | [ShowDialogOptions](#showdialogoptions)  | 是    | 页面显示对话框信息描述。 |
| callback | AsyncCallback&lt;[ShowDialogSuccessResponse](#showdialogsuccessresponse)&gt; | 是    | 对话框响应结果回调。   |

**错误码:**

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

158
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
159
| --------- | ------- |
L
luoying_ace_admin 已提交
160
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
161 162 163

**示例:**

L
lixinnan 已提交
164 165 166
```ts
import promptAction from '@ohos.promptAction';
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
167 168 169 170 171 172 173
try {
  promptAction.showDialog({
    title: 'showDialog Title Info',
    message: 'Message Info',
    buttons: [
      {
        text: 'button1',
Y
yamila 已提交
174
        color: '#000000'
Z
zhaoxinyu 已提交
175 176 177
      },
      {
        text: 'button2',
Y
yamila 已提交
178
        color: '#000000'
Z
zhaoxinyu 已提交
179 180 181 182 183 184 185 186 187 188
      }
    ]
  }, (err, data) => {
    if (err) {
      console.info('showDialog err: ' + err);
      return;
    }
    console.info('showDialog success callback, click button: ' + data.index);
  });
} catch (error) {
L
lixinnan 已提交
189 190 191
  let message = (error as BusinessError).message
  let code = (error as BusinessError).code
  console.error(`showDialog args error code is ${code}, message is ${message}`);
Z
zhaoxinyu 已提交
192 193 194 195 196 197 198 199 200 201 202
};
```

![zh-cn_image_0002](figures/zh-cn_image_0002.gif)

## ShowDialogOptions

对话框的选项。

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

Y
yamila 已提交
203 204 205 206
| 名称    | 类型                                                         | 必填 | 说明                                                         |
| ------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| title   | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 否   | 标题文本。                                                   |
| message | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 否   | 内容文本。                                                   |
207
| buttons  | Array&lt;[Button](#button)&gt;    | 否   | 对话框中按钮的数组,结构为:{text:'button',&nbsp;color:&nbsp;'\#666666'},支持大于1个按钮。
208 209 210
| alignment<sup>10+</sup>  | [DialogAlignment](../arkui-ts/ts-methods-alert-dialog-box.md#dialogalignment枚举说明) | 否   | 弹窗在竖直方向上的对齐方式。<br>默认值:DialogAlignment.Default |
| offset<sup>10+</sup>     | [Offset](../arkui-ts/ts-types.md#offset) | 否     | 弹窗相对alignment所在位置的偏移量。<br/>默认值:{&nbsp;dx:&nbsp;0&nbsp;,&nbsp;dy:&nbsp;0&nbsp;} |
| maskRect<sup>10+</sup>| [Rectangle](../arkui-ts/ts-methods-alert-dialog-box.md#rectangle10类型说明) | 否     | 弹窗遮蔽层区域,在遮蔽层区域内的事件不透传,在遮蔽层区域外的事件透传。<br/>默认值:{ x: 0, y: 0, width: '100%', height: '100%' } |
Z
zhaoxinyu 已提交
211 212 213 214 215 216 217

## ShowDialogSuccessResponse 

对话框的响应结果。

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

Y
yamila 已提交
218 219 220
| 名称  | 类型   | 必填 | 说明                            |
| ----- | ------ | ---- | ------------------------------- |
| index | number | 否   | 选中按钮在buttons数组中的索引。 |
Z
zhaoxinyu 已提交
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

## promptAction.showActionMenu

showActionMenu(options: ActionMenuOptions, callback: AsyncCallback&lt;ActionMenuSuccessResponse&gt;):void

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

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

**参数:**

| 参数名      | 类型                                       | 必填   | 说明        |
| -------- | ---------------------------------------- | ---- | --------- |
| options  | [ActionMenuOptions](#actionmenuoptions)  | 是    | 操作菜单选项。   |
| callback | AsyncCallback&lt;[ActionMenuSuccessResponse](#actionmenusuccessresponse)> | 是    | 菜单响应结果回调。 |

**错误码:**

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

241
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
242
| --------- | ------- |
L
luoying_ace_admin 已提交
243
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
244 245 246

**示例:**

L
lixinnan 已提交
247 248 249
```ts
import promptAction from '@ohos.promptAction';
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
250 251 252 253 254 255
try {
  promptAction.showActionMenu({
    title: 'Title Info',
    buttons: [
      {
        text: 'item1',
Y
yamila 已提交
256
        color: '#666666'
Z
zhaoxinyu 已提交
257 258 259
      },
      {
        text: 'item2',
Y
yamila 已提交
260
        color: '#000000'
Z
zhaoxinyu 已提交
261 262 263 264 265 266 267 268 269 270
      },
    ]
  }, (err, data) => {
    if (err) {
      console.info('showActionMenu err: ' + err);
      return;
    }
    console.info('showActionMenu success callback, click button: ' + data.index);
  })
} catch (error) {
L
lixinnan 已提交
271 272 273
  let message = (error as BusinessError).message
  let code = (error as BusinessError).code
  console.error(`showActionMenu args error code is ${code}, message is ${message}`);
Z
zhaoxinyu 已提交
274 275 276 277 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
};
```

![zh-cn_image_0005](figures/zh-cn_image_0005.gif)

## promptAction.showActionMenu

showActionMenu(options: ActionMenuOptions): Promise&lt;ActionMenuSuccessResponse&gt;

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

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

**参数:**

| 参数名     | 类型                                      | 必填   | 说明      |
| ------- | --------------------------------------- | ---- | ------- |
| options | [ActionMenuOptions](#actionmenuoptions) | 是    | 操作菜单选项。 |

**返回值:**

| 类型                                       | 说明      |
| ---------------------------------------- | ------- |
| Promise&lt;[ActionMenuSuccessResponse](#actionmenusuccessresponse)&gt; | 菜单响应结果。 |

**错误码:**

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

303
| 错误码ID   | 错误信息 |
Z
zhaoxinyu 已提交
304
| --------- | ------- |
L
luoying_ace_admin 已提交
305
| 100001    | if UI execution context not found. |
Z
zhaoxinyu 已提交
306 307 308

**示例:**

L
lixinnan 已提交
309 310 311
```ts
import promptAction from '@ohos.promptAction';
import { BusinessError } from '@ohos.base';
Z
zhaoxinyu 已提交
312 313 314 315 316 317
try {
  promptAction.showActionMenu({
    title: 'showActionMenu Title Info',
    buttons: [
      {
        text: 'item1',
Y
yamila 已提交
318
        color: '#666666'
Z
zhaoxinyu 已提交
319 320 321
      },
      {
        text: 'item2',
Y
yamila 已提交
322
        color: '#000000'
Z
zhaoxinyu 已提交
323 324 325 326 327 328
      },
    ]
  })
    .then(data => {
      console.info('showActionMenu success, click button: ' + data.index);
    })
L
lixinnan 已提交
329
    .catch((err:Error) => {
Z
zhaoxinyu 已提交
330 331 332
      console.info('showActionMenu error: ' + err);
    })
} catch (error) {
L
lixinnan 已提交
333 334 335
  let message = (error as BusinessError).message
  let code = (error as BusinessError).code
  console.error(`showActionMenu args error code is ${code}, message is ${message}`);
Z
zhaoxinyu 已提交
336 337 338 339 340 341 342 343 344 345 346
};
```

![zh-cn_image_0005](figures/zh-cn_image_0005.gif)

## ActionMenuOptions

操作菜单的选项。

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

Y
yamila 已提交
347 348 349
| 名称    | 类型                                                         | 必填 | 说明                                                         |
| ------- | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ |
| title   | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 否   | 标题文本。                                                   |
王鑫 已提交
350
| buttons | [[Button](#button),[Button](#button)?,[Button](#button)?,[Button](#button)?,[Button](#button)?,[Button](#button)?] | 是   | 菜单中菜单项按钮的数组,结构为:{text:'button',&nbsp;color:&nbsp;'\#666666'},支持1-6个按钮。按钮数量大于6个时,仅显示前6个按钮,之后的按钮不显示。 |
Z
zhaoxinyu 已提交
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371

## ActionMenuSuccessResponse

操作菜单的响应结果。

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

| 名称    | 类型     | 必填   | 说明                       |
| ----- | ------ | ---- | ------------------------ |
| index | number | 否    | 选中按钮在buttons数组中的索引,从0开始。 |

## Button

菜单中的菜单项按钮。

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

| 名称    | 类型                                       | 必填   | 说明      |
| ----- | ---------------------------------------- | ---- | ------- |
| text  | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 是    | 按钮文本内容。 |
| color | string\| [Resource](../arkui-ts/ts-types.md#resource类型)<sup>9+</sup> | 是    | 按钮文本颜色。 |