这是云开发的快速启动指引,其中演示了如何上手使用云开发的三大基础能力:
- 数据库:一个既可在小程序前端操作,也能在云函数中读写的 JSON 文档型数据库
- 文件存储:在小程序前端直接上传/下载云端文件,在云开发控制台可视化管理
- 云函数:在云端运行的代码,微信私有协议天然鉴权,开发者只需编写业务逻辑代码
待启用tabBar "tabBar": { "color": "#c3c3c3", "selectedColor": "#343434", "borderStyle": "white", "backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/icons/home.png",
"selectedIconPath": "images/icons/home-active.png",
"text": "首页"
},
{
"pagePath": "pages/user/user",
"iconPath": "images/icons/user.png",
"selectedIconPath": "images/icons/user-active.png",
"text": "讨论区"
},
{
"pagePath": "pages/addWorker/addWorker",
"iconPath": "images/icons/home.png",
"selectedIconPath": "images/icons/home-active.png",
"text": "添加信息"
},
{
"pagePath": "pages/index2/index",
"iconPath": "images/icons/home.png",
"selectedIconPath": "images/icons/home-active.png",
"text": "demo"
},
{
"pagePath": "pages/user/user",
"iconPath": "images/icons/user.png",
"selectedIconPath": "images/icons/user-active.png",
"text": "我的"
}
]
},