提交 ba30b3ab 编写于 作者: DCloud_JSON's avatar DCloud_JSON

完善文档目录结构,各表结构

上级 46f5bf5f
......@@ -49,7 +49,7 @@ uni-starter将节省开发者大量的时间,让开发者集中精力在自己
uni-starter + uniCloud admin,应用开发从未如此简单快捷!
uni-starter提供了uni-starter.config.js,可指定该应用是否强制登录才能进入首页,可配置选择登录注册方式以及不同方式的优先级等。
配置项内容如下:
```
module.exports = {
"h5": {
......@@ -133,20 +133,19 @@ uni-starter
│ | └─user-center 用户中心云函数,实现用户注册、修改密码、发送验证码、快捷登录(微信、短信、账户、一键登录)
│ └──database 云数据目录
│ ├─db_init.json db_init.json初始化数据库文件,其中不再包含schema <a target="_blank" href="https://uniapp.dcloud.net.cn/uniCloud/hellodb?id=db-init">详情</a>
│ ├─opendb-app-versions.schema.json 表结构文件
│ ├─opendb-banner.schema.json 表结构文件
│ ├─opendb-feedback.schema.json 表结构文件
│ ├─opendb-news-articles.schema.json 表结构文件
│ ├─opendb-news-categories.schema.json 表结构文件
│ ├─opendb-news-comments.schema.json 表结构文件
│ ├─opendb-news-favorite.schema.json 表结构文件
│ ├─opendb-search-hot.schema.json 表结构文件
│ ├─opendb-search-log.schema.json 表结构文件
│ ├─opendb-verify-codes.schema.json 表结构文件
│ ├─read-news-log.schema.json 表结构文件
│ ├─uni-id-log.schema.json 表结构文件
│ ├─uni-id-scores.schema.json 表结构文件
│ └─uni-id-users.schema.json 表结构文件
│ ├─opendb-app-versions.schema.json 应用版本,表结构文件
│ ├─opendb-banner.schema.json 横幅数据表,表结构文件
│ ├─opendb-feedback.schema.json 意见反馈表,表结构文件
│ ├─opendb-news-articles.schema.json 新闻文章表,表结构文件
│ ├─opendb-news-categories.schema.json 新闻分类表,表结构文件
│ ├─opendb-news-comments.schema.json 新闻评论表,表结构文件
│ ├─opendb-news-favorite.schema.json 新闻收藏表,表结构文件
│ ├─opendb-search-hot.schema.json 热门搜索表,表结构文件
│ ├─opendb-search-log.schema.json 搜索记录表,表结构文件
│ ├─opendb-verify-codes.schema.json 验证码表,表结构文件
│ ├─uni-id-log.schema.json 登陆日志表,表结构文件
│ ├─uni-id-scores.schema.json 用户积分表,表结构文件
│ └─uni-id-users.schema.json 用户表,表结构文件
├─pages 业务页面文件存放的目录
│ ├─common
│ │ └─webview webview目录
......
## 0.1.4(2021-03-01)
- 调整为uni_modules目录规范
......@@ -13,7 +13,7 @@
"usearch",
"unisearch"
],
"repository": "https://gitee.com/dcloud/uni-starter",
"repository": "https://codechina.csdn.net/dcloud/uni-starter.git",
"engines": {
"HBuilderX": "^3.1.0"
},
......
{
"bsonType": "object",
"required": ["user_id", "article_id"],
"permission": {
"read": "doc.uid == auth.uid",
"create": "auth.uid != null",
"update": "doc.uid == auth.uid"
//"delete": "doc.uid == auth.uid"
},
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"article_id": {
"bsonType": "string",
"description": "文章id,参考opendb-news-articles表",
"foreignKey": "opendb-news-articles._id"
},
"user_id": {
"bsonType": "string",
"description": "收藏者id,参考uni-id-users表",
"forceDefaultValue": {
"$env": "uid"
},
"foreignKey": "uni-id-users._id"
},
"last_time": { //设计策略是多次看同一个文章只做一次记录,重复看的文章时间更新为当前时间
"bsonType": "timestamp",
"description": "最后一次看的时间",
"defaultValue": {
"$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.
先完成此消息的编辑!
想要评论请 注册