promise.md 4.5 KB
Newer Older
D
DCloud_LXH 已提交
1 2
# Promise

W
wanganxp 已提交
3
Promise 对象表示异步操作最终的完成(或失败)以及其结果值。
D
DCloud_LXH 已提交
4 5 6 7 8 9 10 11 12 13 14

### Constructor(fn)

<!-- UTSJSON.Promise.Constructor.description -->

<!-- UTSJSON.Promise.Constructor.param -->

<!-- UTSJSON.Promise.Constructor.returnValue -->

<!-- UTSJSON.Promise.Constructor.compatibility -->

D
DCloud_LXH 已提交
15
### Constructor(fn)
D
DCloud_LXH 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

<!-- UTSJSON.Promise.Constructor_1.description -->

<!-- UTSJSON.Promise.Constructor_1.param -->

<!-- UTSJSON.Promise.Constructor_1.returnValue -->

<!-- UTSJSON.Promise.Constructor_1.compatibility -->

## 实例方法


### then()

<!-- UTSJSON.Promise.then.description -->

<!-- UTSJSON.Promise.then.param -->

<!-- UTSJSON.Promise.then.returnValue -->

<!-- UTSJSON.Promise.then.compatibility -->

D
DCloud_LXH 已提交
38
### then(onFulfilled, onRejected?)
D
DCloud_LXH 已提交
39 40 41 42 43 44 45 46 47

<!-- UTSJSON.Promise.then_1.description -->

<!-- UTSJSON.Promise.then_1.param -->

<!-- UTSJSON.Promise.then_1.returnValue -->

<!-- UTSJSON.Promise.then_1.compatibility -->

D
DCloud_LXH 已提交
48
### then(onFulfilled, onRejected?)
D
DCloud_LXH 已提交
49 50 51 52 53 54 55 56 57

<!-- UTSJSON.Promise.then_2.description -->

<!-- UTSJSON.Promise.then_2.param -->

<!-- UTSJSON.Promise.then_2.returnValue -->

<!-- UTSJSON.Promise.then_2.compatibility -->

D
DCloud_LXH 已提交
58
### then(onFulfilled, onRejected?)
D
DCloud_LXH 已提交
59 60 61 62 63 64 65 66 67

<!-- UTSJSON.Promise.then_3.description -->

<!-- UTSJSON.Promise.then_3.param -->

<!-- UTSJSON.Promise.then_3.returnValue -->

<!-- UTSJSON.Promise.then_3.compatibility -->

D
DCloud_LXH 已提交
68
### then(onFulfilled, onRejected?)
D
DCloud_LXH 已提交
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

<!-- UTSJSON.Promise.then_4.description -->

<!-- UTSJSON.Promise.then_4.param -->

<!-- UTSJSON.Promise.then_4.returnValue -->

<!-- UTSJSON.Promise.then_4.compatibility -->

### catch()

<!-- UTSJSON.Promise.catch.description -->

<!-- UTSJSON.Promise.catch.param -->

<!-- UTSJSON.Promise.catch.returnValue -->

<!-- UTSJSON.Promise.catch.compatibility -->

D
DCloud_LXH 已提交
88
### catch(onRejected)
D
DCloud_LXH 已提交
89 90 91 92 93 94 95 96 97

<!-- UTSJSON.Promise.catch_1.description -->

<!-- UTSJSON.Promise.catch_1.param -->

<!-- UTSJSON.Promise.catch_1.returnValue -->

<!-- UTSJSON.Promise.catch_1.compatibility -->

D
DCloud_LXH 已提交
98
### catch(onRejected)
D
DCloud_LXH 已提交
99 100 101 102 103 104 105 106 107

<!-- UTSJSON.Promise.catch_2.description -->

<!-- UTSJSON.Promise.catch_2.param -->

<!-- UTSJSON.Promise.catch_2.returnValue -->

<!-- UTSJSON.Promise.catch_2.compatibility -->

D
DCloud_LXH 已提交
108
### catch(onRejected)
D
DCloud_LXH 已提交
109 110 111 112 113 114 115 116 117

<!-- UTSJSON.Promise.catch_3.description -->

<!-- UTSJSON.Promise.catch_3.param -->

<!-- UTSJSON.Promise.catch_3.returnValue -->

<!-- UTSJSON.Promise.catch_3.compatibility -->

D
DCloud_LXH 已提交
118
### catch(onRejected)
D
DCloud_LXH 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

<!-- UTSJSON.Promise.catch_4.description -->

<!-- UTSJSON.Promise.catch_4.param -->

<!-- UTSJSON.Promise.catch_4.returnValue -->

<!-- UTSJSON.Promise.catch_4.compatibility -->

### finally(callback)

<!-- UTSJSON.Promise.finally.description -->

<!-- UTSJSON.Promise.finally.param -->

<!-- UTSJSON.Promise.finally.returnValue -->

<!-- UTSJSON.Promise.finally.compatibility -->

### resolve()

<!-- UTSJSON.Promise.resolve.description -->

<!-- UTSJSON.Promise.resolve.param -->

<!-- UTSJSON.Promise.resolve.returnValue -->

<!-- UTSJSON.Promise.resolve.compatibility -->

D
DCloud_LXH 已提交
148
### resolve(value)
D
DCloud_LXH 已提交
149 150 151 152 153 154 155 156 157

<!-- UTSJSON.Promise.resolve_1.description -->

<!-- UTSJSON.Promise.resolve_1.param -->

<!-- UTSJSON.Promise.resolve_1.returnValue -->

<!-- UTSJSON.Promise.resolve_1.compatibility -->

D
DCloud_LXH 已提交
158
### resolve(value)
D
DCloud_LXH 已提交
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 217 218 219 220 221 222

<!-- UTSJSON.Promise.resolve_2.description -->

<!-- UTSJSON.Promise.resolve_2.param -->

<!-- UTSJSON.Promise.resolve_2.returnValue -->

<!-- UTSJSON.Promise.resolve_2.compatibility -->

### reject(value?)

<!-- UTSJSON.Promise.reject.description -->

<!-- UTSJSON.Promise.reject.param -->

<!-- UTSJSON.Promise.reject.returnValue -->

<!-- UTSJSON.Promise.reject.compatibility -->

### all(arr)

<!-- UTSJSON.Promise.all.description -->

<!-- UTSJSON.Promise.all.param -->

<!-- UTSJSON.Promise.all.returnValue -->

<!-- UTSJSON.Promise.all.compatibility -->

### race(arr)

<!-- UTSJSON.Promise.race.description -->

<!-- UTSJSON.Promise.race.param -->

<!-- UTSJSON.Promise.race.returnValue -->

<!-- UTSJSON.Promise.race.compatibility -->

### any(arr)

<!-- UTSJSON.Promise.any.description -->

<!-- UTSJSON.Promise.any.param -->

<!-- UTSJSON.Promise.any.returnValue -->

<!-- UTSJSON.Promise.any.compatibility -->

### allSettled(arr)

<!-- UTSJSON.Promise.allSettled.description -->

<!-- UTSJSON.Promise.allSettled.param -->

<!-- UTSJSON.Promise.allSettled.returnValue -->

<!-- UTSJSON.Promise.allSettled.compatibility -->

<!-- UTSJSON.Promise.tutorial -->

## Bug & Tips@tips

* 目前 Promise 类型编译到 kotlin 为 io.dcloud.uts.UTSPromise
D
DCloud_LXH 已提交
223
* 编译到swift时暂不支持。但在uvue里因为iOS默认js驱动所以可以使用Promise