prompt.md 2.7 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4
## uni.showToast(options) @showtoast

<!-- UTSAPIJSON.showToast.description -->

D
DCloud_LXH 已提交
5 6
<!-- UTSAPIJSON.showToast.compatibility -->

D
DCloud_LXH 已提交
7 8 9 10 11 12 13 14 15 16
<!-- UTSAPIJSON.showToast.param -->

<!-- UTSAPIJSON.showToast.returnValue -->

<!-- UTSAPIJSON.showToast.example -->

<!-- UTSAPIJSON.showToast.tutorial -->

#### 注意事项 ####

W
wanganxp 已提交
17
+ App平台 `position` 参数特别说明
D
DCloud_LXH 已提交
18 19 20 21 22

如果没有设置 `position` 字段,`uni.showToast` 会采用应用弹窗方案,即弹窗与页面生命周期绑定。 页面关闭时,当前页面弹出的所有弹窗都会被自动取消。

如果设置了`position` 字段,`uni.showToast` 会采用系统弹窗方案,即弹窗与页面无绑定关系。 页面关闭后,弹出中的/等待弹出的`Toast`会继续展示。

D
DCloud_LXH 已提交
23
系统弹窗在部分系统(比如 MIUI,Google)可能会有应用图标前缀。
D
DCloud_LXH 已提交
24

D
DCloud_LXH 已提交
25
系统弹窗在部分系统(比如 鸿蒙 4.0以上)可能不支持顶部和居中展示。
D
DCloud_LXH 已提交
26

D
DCloud_LXH 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39
## uni.hideToast() @hidetoast

<!-- UTSAPIJSON.hideToast.description -->

<!-- UTSAPIJSON.hideToast.param -->

<!-- UTSAPIJSON.hideToast.returnValue -->

<!-- UTSAPIJSON.hideToast.example -->

<!-- UTSAPIJSON.hideToast.compatibility -->

<!-- UTSAPIJSON.hideToast.tutorial -->
D
DCloud_LXH 已提交
40 41 42 43 44 45


## uni.showLoading(options) @showloading

<!-- UTSAPIJSON.showLoading.description -->

D
DCloud_LXH 已提交
46 47
<!-- UTSAPIJSON.showLoading.compatibility -->

D
DCloud_LXH 已提交
48 49 50 51 52 53 54 55
<!-- UTSAPIJSON.showLoading.param -->

<!-- UTSAPIJSON.showLoading.returnValue -->

<!-- UTSAPIJSON.showLoading.example -->

<!-- UTSAPIJSON.showLoading.tutorial -->

D
DCloud_LXH 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69
## uni.hideLoading() @hideloading

<!-- UTSAPIJSON.hideLoading.description -->

<!-- UTSAPIJSON.hideLoading.param -->

<!-- UTSAPIJSON.hideLoading.returnValue -->

<!-- UTSAPIJSON.hideLoading.example -->

<!-- UTSAPIJSON.hideLoading.compatibility -->

<!-- UTSAPIJSON.hideLoading.tutorial -->

D
DCloud_LXH 已提交
70 71 72 73
## uni.showModal(options) @showmodal

<!-- UTSAPIJSON.showModal.description -->

D
DCloud_LXH 已提交
74 75
<!-- UTSAPIJSON.showModal.compatibility -->

D
DCloud_LXH 已提交
76 77 78 79 80 81 82 83 84 85 86 87
<!-- UTSAPIJSON.showModal.param -->

<!-- UTSAPIJSON.showModal.returnValue -->

<!-- UTSAPIJSON.showModal.example -->

<!-- UTSAPIJSON.showModal.tutorial -->

## uni.showActionSheet(options) @showactionsheet

<!-- UTSAPIJSON.showActionSheet.description -->

D
DCloud_LXH 已提交
88 89
<!-- UTSAPIJSON.showActionSheet.compatibility -->

D
DCloud_LXH 已提交
90 91
<!-- UTSAPIJSON.showActionSheet.param -->

W
x  
wanganxp 已提交
92 93
itemList,即actionsheet的列表项,在app和小程序上最多6项,超出会报错。在web上超出不报错,列表区变为可滚动。

D
DCloud_LXH 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106
<!-- UTSAPIJSON.showActionSheet.returnValue -->

<!-- UTSAPIJSON.showActionSheet.example -->

<!-- UTSAPIJSON.showActionSheet.tutorial -->

<!-- UTSAPIJSON.prompt.example -->

<!-- UTSAPIJSON.general_type.name -->

<!-- UTSAPIJSON.general_type.param -->

## Bug & Tips@tips
D
DCloud_LXH 已提交
107
- 目前web和App的弹窗UI风格不统一,后续会修复