小程序云开发(二)数据库
作者:互联网
小程序云开发中云数据库的使用
学习视频:https://www.imooc.com/learn/1121
一、打开云开发控制台中的数据库,添加集合
二、获取数据库的引用
在需要操作数据库的js文件中调用获取默认环境的数据库的引用: const db = wx.cloud.database()
三、操作数据库
- 添加数据库
通过Collection.add在集合上新增记录,官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/add.html
2.更新数据库
Collection.doc用于获取记录的引用:接受一个 id 参数,指定需引用的记录 ID。
Document.update更新一条记录
官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/update.html
3.查找数据
Collection.where指定筛选条件
官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/read.html
注:通过云控制台添加的记录会出现查询不到的情况
解决:修改权限为“所有用户可读仅创建者可读写”即可查询出结果。
4.删除数据
Document.remove删除一条记录,如果批量删除需调用云函数,在云函数中进行批量删除。
官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/remove.html
标签:database,数据库,程序,html,开发,https,developers,com 来源: https://blog.csdn.net/UgvolI/article/details/95637646