Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
7eaad3b2
H
hello-uniCloud
项目概览
DCloud
/
hello-uniCloud
通知
294
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uniCloud
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7eaad3b2
编写于
10月 23, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改 unicloud-test表相关操作的表字段名称
上级
70a8c62f
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
13 addition
and
17 deletion
+13
-17
pages/cloudFunction/cloudFunction.vue
pages/cloudFunction/cloudFunction.vue
+4
-6
pages/cloudObject/cloudObject.vue
pages/cloudObject/cloudObject.vue
+4
-6
uniCloud-aliyun/cloudfunctions/cloud-object-demo/index.obj.js
...loud-aliyun/cloudfunctions/cloud-object-demo/index.obj.js
+5
-5
未找到文件。
pages/cloudFunction/cloudFunction.vue
浏览文件 @
7eaad3b2
...
...
@@ -37,9 +37,8 @@
uniCloud
.
callFunction
({
name
:
'
add
'
,
data
:
{
name
:
'
DCloud
'
,
subType
:
'
uniCloud
'
,
createTime
:
Date
.
now
()
product
:
'
uniCloud
'
,
create_time
:
Date
.
now
()
}
}).
then
((
res
)
=>
{
uni
.
hideLoading
()
...
...
@@ -86,9 +85,8 @@
uniCloud
.
callFunction
({
name
:
'
update
'
,
data
:
{
name
:
'
DCloud
'
,
subType
:
'
html 5+
'
,
createTime
:
Date
.
now
()
product
:
'
uni-app
'
,
create_time
:
Date
.
now
()
}
}).
then
((
res
)
=>
{
uni
.
hideLoading
()
...
...
pages/cloudObject/cloudObject.vue
浏览文件 @
7eaad3b2
...
...
@@ -50,9 +50,8 @@
title
:
'
处理中...
'
})
cloudObjectDemo
.
add
({
name
:
'
DCloud
'
,
subType
:
'
uniCloud
'
,
createTime
:
Date
.
now
()
product
:
'
uniCloud
'
,
create_time
:
Date
.
now
()
}).
then
((
res
)
=>
{
console
.
log
(
res
)
uni
.
hideLoading
()
...
...
@@ -94,9 +93,8 @@
title
:
'
处理中...
'
})
cloudObjectDemo
.
update
({
name
:
'
DCloud
'
,
subType
:
'
html 5+
'
,
createTime
:
Date
.
now
()
product
:
'
uni-app
'
,
create_time
:
Date
.
now
()
}).
then
((
res
)
=>
{
uni
.
hideLoading
()
uni
.
showModal
({
...
...
uniCloud-aliyun/cloudfunctions/cloud-object-demo/index.obj.js
浏览文件 @
7eaad3b2
const
db
=
uniCloud
.
database
();
const
testCollection
=
db
.
collection
(
'
unicloud-test
'
)
module
.
exports
=
{
async
add
({
name
,
subType
,
createT
ime
})
{
let
res
=
await
testCollection
.
add
({
name
,
subType
,
createT
ime
})
async
add
({
product
,
create_t
ime
})
{
let
res
=
await
testCollection
.
add
({
product
,
create_t
ime
})
return
res
},
async
remove
()
{
...
...
@@ -26,7 +26,7 @@ module.exports = {
}
}
},
async
update
({
name
,
subType
,
createT
ime
})
{
async
update
({
product
,
create_t
ime
})
{
const
docList
=
await
testCollection
.
limit
(
1
).
get
();
if
(
!
docList
.
data
||
docList
.
data
.
length
===
0
)
{
return
{
...
...
@@ -34,11 +34,11 @@ module.exports = {
msg
:
'
集合unicloud-test内没有数据
'
}
}
const
res
=
await
testCollection
.
doc
(
docList
.
data
[
0
].
_id
).
update
({
name
,
subType
,
createT
ime
});
const
res
=
await
testCollection
.
doc
(
docList
.
data
[
0
].
_id
).
update
({
product
,
create_t
ime
});
if
(
res
.
updated
===
1
)
{
let
result
=
Object
.
assign
({},
{
_id
:
docList
.
data
[
0
].
_id
},
{
name
,
subType
,
createT
ime
})
},
{
product
,
create_t
ime
})
return
{
status
:
0
,
msg
:
`集合第一条数据由
${
JSON
.
stringify
(
docList
.
data
[
0
])}
修改为
${
JSON
.
stringify
(
result
)}
`
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录