Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-uni-app-x-zh
提交
1f76df97
U
unidocs-uni-app-x-zh
项目概览
DCloud
/
unidocs-uni-app-x-zh
通知
144
Star
2
Fork
33
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
9
列表
看板
标记
里程碑
合并请求
11
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
unidocs-uni-app-x-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
9
Issue
9
列表
看板
标记
里程碑
合并请求
11
合并请求
11
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
1f76df97
编写于
4月 17, 2024
作者:
雪洛
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
docs: 更新uni-app-x uniCloud云函数云对象泛型文档
上级
2c355479
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
84 addition
and
1 deletion
+84
-1
docs/api/unicloud/function.md
docs/api/unicloud/function.md
+43
-0
docs/api/unicloud/object.md
docs/api/unicloud/object.md
+41
-1
未找到文件。
docs/api/unicloud/function.md
浏览文件 @
1f76df97
...
@@ -11,3 +11,46 @@
...
@@ -11,3 +11,46 @@
<!-- UTSUNICLOUDAPIJSON.callFunction.tutorial -->
<!-- UTSUNICLOUDAPIJSON.callFunction.tutorial -->
<!-- UTSUNICLOUDAPIJSON.unicloud-call-function.example -->
<!-- UTSUNICLOUDAPIJSON.unicloud-call-function.example -->
### 调用云函数时传入泛型
> 4.13版本起支持,仅安卓端会构造对应的泛型的实例,web端和iOS端泛型仅作为类型使用。
用法:
`uniCloud.callFunction<泛型类型>({name: 'xxx', data: {}} as UniCloudCallFunctionOptions)`
在不传泛型时callFunction返回的类型为
`Promise<UniCloudCallFunctionResult<UTSJSONObject>>`
,传入泛型后callFunction返回的类型为
`Promise<UniCloudCallFunctionResult<泛型类型>>`
**代码示例**
```
ts
// 云函数fn代码
'
use strict
'
;
exports
.
main
=
async
(
event
,
context
)
=>
{
return
{
errCode
:
0
,
errMsg
:
''
,
detail
:
'
call function detail
'
};
};
```
```
ts
// 客户端代码
type
CallFunctionResult
=
{
errCode
:
number
,
errMsg
:
string
,
detail
:
string
}
uniCloud
.
callFunction
<
CallFunctionResult
>
(
{
name
:
'
fn
'
,
data
:
{
a
:
1
}
as
UTSJSONObject
,
}
as
UniCloudCallFunctionOptions
).
then
(
function
(
res
)
{
const
result
=
res
.
result
// result的类型为CallFunctionResult
const
detail
=
result
.
detail
// 可直接使用.detail访问
console
.
log
(
detail
)
}).
catch
(
function
(
err
:
any
|
null
)
{
console
.
error
(
err
)
})
```
docs/api/unicloud/object.md
浏览文件 @
1f76df97
...
@@ -32,4 +32,44 @@ export { // 上面的写法可以自己调整,仅需保证export内包含所
...
@@ -32,4 +32,44 @@ export { // 上面的写法可以自己调整,仅需保证export内包含所
}
}
```
```
<!-- UTSUNICLOUDAPIJSON.unicloud-import-object.example -->
<!-- UTSUNICLOUDAPIJSON.unicloud-import-object.example -->
\ No newline at end of file
### 调用云对象时传入泛型
> 4.13版本起支持,仅安卓端会构造对应的泛型的实例,web端和iOS端泛型仅作为类型使用。
用法:
`obj.add<泛型类型>()`
在不传泛型时云对象方法返回的类型为
`Promise<UTSJSONObject>`
,传入泛型后callFunction返回的类型为
`Promise<泛型类型>`
**代码示例**
```
ts
// 云对象todo代码
'
use strict
'
;
module
.
exports
=
{
async
add
(
title
,
content
)
{
return
{
errCode
:
0
,
errMsg
:
''
,
detail
:
`Todo added, title:
${
title
}
, content:
${
content
}
`
}
},
}
```
```
ts
// 客户端代码
const
todo
=
uniCloud
.
importObject
(
'
todo
'
)
type
CallObjectResult
=
{
errCode
:
number
errMsg
:
string
detail
:
string
}
todo
.
add
<
CallObjectResult
>
(
'
todo title
'
,
'
todo content
'
).
then
((
res
)
=>
{
const
detail
=
res
.
detail
// res类型为CallObjectResult,可直接通过.detail访问其中detail属性
console
.
log
(
detail
)
}).
catch
((
err
:
any
|
null
)
=>
{
console
.
error
(
err
)
})
```
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录