Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
75ade42c
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看板
提交
75ade42c
编写于
10月 23, 2023
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
notice 表改为 opendb-notice
上级
0658cba9
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
51 addition
and
43 deletion
+51
-43
pages/clientDB/demo/demo.vue
pages/clientDB/demo/demo.vue
+1
-1
uniCloud-aliyun/cloudfunctions/uni-clientDB-actions/add_view_count.js
...yun/cloudfunctions/uni-clientDB-actions/add_view_count.js
+1
-1
uniCloud-aliyun/database/db_init.json
uniCloud-aliyun/database/db_init.json
+1
-1
uniCloud-aliyun/database/notice.schema.json
uniCloud-aliyun/database/notice.schema.json
+0
-40
uniCloud-aliyun/database/opendb-notice.schema.json
uniCloud-aliyun/database/opendb-notice.schema.json
+48
-0
未找到文件。
pages/clientDB/demo/demo.vue
浏览文件 @
75ade42c
...
...
@@ -130,7 +130,7 @@
async
getNoticeData
()
{
console
.
log
(
'
111111111111
'
);
let
res
=
await
db
.
action
(
'
add_view_count
'
)
.
collection
(
'
notice
'
)
.
collection
(
'
opendb-
notice
'
)
.
field
(
'
data,_id,update_time,view_count
'
)
.
get
();
console
.
log
(
"
res:
"
,
res
);
...
...
uniCloud-aliyun/cloudfunctions/uni-clientDB-actions/add_view_count.js
浏览文件 @
75ade42c
...
...
@@ -6,7 +6,7 @@ module.exports = {
},
after
:
async
(
state
,
event
,
error
,
result
)
=>
{
await
db
.
collection
(
'
notice
'
).
update
({
await
db
.
collection
(
'
opendb-
notice
'
).
update
({
view_count
:
$cmd
.
inc
(
1
)
})
if
(
error
)
{
...
...
uniCloud-aliyun/database/db_init.json
浏览文件 @
75ade42c
...
...
@@ -144,7 +144,7 @@
"data"
:
[{
"state"
:
0
,
"text"
:
"该用户比较懒啥也没写!"
}]
},
"comment"
:
{},
"notice"
:
{
"
opendb-
notice"
:
{
"data"
:
[{
"view_count"
:
0
,
"data"
:
"这是一个由clientDB实现的留言板示例;权限部分由DBschema和action云函数控制。
\n
规则如下:
\n
1.未登陆的游客,只能看到审核通过的留言。
\n
2.登陆的用户还可以:发表留言,会进入审核状态,期间支持查看和删除。审核通过后可以重新编辑留言。但在重新编辑后会自动再次进入审核状态。
\n
3.审核员和管理员可以:查看所有状态的留言,操作:审核、编辑、删除。"
...
...
uniCloud-aliyun/database/notice.schema.json
已删除
100644 → 0
浏览文件 @
0658cba9
//
文档教程:
https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType"
:
"object"
,
"required"
:
[],
"permission"
:
{
"read"
:
"action in 'add_view_count'"
,
"create"
:
false
,
"update"
:
false
,
"delete"
:
false
},
"properties"
:
{
"_id"
:
{
"description"
:
"ID,系统自动生成"
,
"foreignKey"
:
"comment.notice_id"
},
"data"
:{
"bsonType"
:
"string"
,
"description"
:
"公告内容"
,
"label"
:
"公告内容"
,
"maxLength"
:
32
,
"errorMessage"
:{
"maxLength"
:
"{label}不能大于{maxLength}个字符"
}
},
"view_count"
:
{
"bsonType"
:
"int"
,
"title"
:
"阅读数量"
,
"description"
:
"阅读数量"
,
"permission"
:
{
"write"
:
false
}
},
"update_time"
:{
"bsonType"
:
"timestamp"
,
"forceDefaultValue"
:{
"$env"
:
"now"
}
}
}
}
\ No newline at end of file
uniCloud-aliyun/database/opendb-notice.schema.json
0 → 100644
浏览文件 @
75ade42c
//
文档教程:
https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType"
:
"object"
,
"required"
:
[],
"permission"
:
{
"read"
:
"action in 'add_view_count'"
,
"create"
:
false
,
"update"
:
false
,
"delete"
:
false
},
"properties"
:
{
"_id"
:
{
"description"
:
"ID,系统自动生成"
,
"foreignKey"
:
"comment.notice_id"
},
"data"
:
{
"bsonType"
:
"string"
,
"description"
:
"公告内容"
,
"label"
:
"公告内容"
,
"maxLength"
:
32
,
"errorMessage"
:
{
"maxLength"
:
"{label}不能大于{maxLength}个字符"
}
},
"view_count"
:
{
"bsonType"
:
"int"
,
"title"
:
"阅读数量"
,
"description"
:
"阅读数量"
,
"permission"
:
{
"write"
:
false
}
},
"create_time"
:
{
"description"
:
"创建时间"
,
"bsonType"
:
"timestamp"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
},
"update_time"
:
{
"description"
:
"更新时间"
,
"bsonType"
:
"timestamp"
,
"forceDefaultValue"
:
{
"$env"
:
"now"
}
}
}
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录