request.md 1.3 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
## uni.request(param) @request

<!-- UTSAPIJSON.request.description -->

<!-- UTSAPIJSON.request.param -->

<!-- UTSAPIJSON.request.returnValue -->

<!-- UTSAPIJSON.request.compatibility -->

<!-- UTSAPIJSON.request.tutorial -->

<!-- UTSAPIJSON.request.example -->

W
wanganxp 已提交
15 16 17
## cookie管理
- uni-app x 4.0+,app-android平台的 `uni.request``uni.uploadFile``uni.downloadFile`,之间支持共享cookie。

D
DCloud_LXH 已提交
18 19
## 注意事项

W
wanganxp 已提交
20
* app-android平台 request 接口内部通过[特殊方式读取了泛型类型](../uts/generics.md#使用限制),不支持传入动态的泛型:比如将外层方法的普通泛型参数传入 request。
D
DCloud_LXH 已提交
21 22 23 24 25
* 如果使用泛型先创建RequestOptions实例,再传入uni.request(),此时请务必确保request要显式指定泛型,例:
    ```typescript
    const options: RequestOptions<Person> = ...
    uni.request<Person>(options)
    ```
W
wanganxp 已提交
26 27 28
* app-android平台 uni.request()暂未支持Promise,返回值是RequestTask。
* web平台 request接口目前没有返回UTSJSONObject类型数据而是一个普通对象,后续可能会调整为UTSJSONObject类型,如需兼容多端可以使用下标获取request返回的数据内容。
* web平台 request接口目前不支持创建传入的泛型的实例
D
DCloud_LXH 已提交
29 30 31 32

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

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