Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
a5eff0b8
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3323
Star
107
Fork
845
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
102
列表
看板
标记
里程碑
合并请求
82
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
102
Issue
102
列表
看板
标记
里程碑
合并请求
82
合并请求
82
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a5eff0b8
编写于
11月 18, 2021
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: Promise 化
上级
8aeb7955
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
7 deletion
+11
-7
docs/api/README.md
docs/api/README.md
+11
-7
未找到文件。
docs/api/README.md
浏览文件 @
a5eff0b8
...
...
@@ -100,7 +100,7 @@ async function request () {
#### Vue 3
> 对部分 API 进行了 Promise 封装,
`then` 为 success 成功回调。`catch` 为 fail 失败
回调
> 对部分 API 进行了 Promise 封装,
调用成功会进入 `then 方法` 回调。调用失败会进入 `catch 方法`
回调
**使用示例:**
...
...
@@ -116,26 +116,30 @@ uni.request({
}
});
//
Promise
//
使用 Promise then/catch 方式调用
uni
.
request
({
url
:
'
https://www.example.com/request
'
})
.
then
(
res
=>
{
// 此处即为 success 回调中的 res
.
then
(
res
=>
{
// 此处的 res 参数,与使用默认方式调用时 success 回调中的 res 参数一致
console
.
log
(
res
.
data
);
})
.
catch
(
err
=>
{
// 此处即为 fail 回调中的 err
.
catch
(
err
=>
{
// 此处的 err 参数,与使用默认方式调用时 fail 回调中的 err 参数一致
console
.
error
(
err
)
})
//
Await
//
使用 Await/Await 方式调用
async
function
request
()
{
try
{
var
res
=
await
uni
.
request
({
url
:
'
https://www.example.com/request
'
});
console
.
log
(
res
);
// 此处即为 success 回调中的 res
// 此处的 res 参数,与使用默认方式调用时 success 回调中的 res 参数一致
console
.
log
(
res
);
}
catch
(
err
)
{
console
.
error
(
err
)
// 此处即为 fail 回调中的 err
// 此处的 err 参数,与使用默认方式调用时 fail 回调中的 err 参数一致
console
.
error
(
err
)
}
}
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录