1.添加数据
onLoad: function (options) {
this.adddemo();
},
adddemo:function() {
const db = wx.cloud.database();
db.collection("表名").add({
data: {
title:"标题",
author:"李四",
date:new Date()
}
}).then(res => {
console.log(res)
})
}
2.读取数据
(1) 获取所有数据(考虑到性能,小程序一次性最多只能获取20条数据)
db.collection("表名").get().then(res => {
console.log(res)
});
(2) 如果你知道某条数据的id,可以根据id获取某条数据:通过id获取数据需要通过doc函数来实现:
db.collection("表名").doc("该条数据的id").get().then(res => {
console.log(res)
});
(3)根据条件获取数据:根据条件获取数据,可以通过where函数来实现
例如:查找 title 为 “查找的标题” 的数据
db.collection("表名").where({
title: "查找的标题"
}).get().then(res => {
console.log(res);
});
例如:查找时间大于“2020/9/17 17:28:00” 的数据
const com = db.command;
db.collection("表名").where({
data: com.gte(new Data("2020/9/17 17:28:00"))
}).get().then(res => {
console.log(res);
});
3.删除数据
(1)删除一条数据:输出一条数据,需要知道这条数据的id
db.collection("表名").doc("该条数据的id").remove().then(res => {
console.log(res);
});
删除失败:可能数据库中没有 或者 是权限问题(通过控制台添加的数据只有管理员才能删除,创建的数据只能由创建该条数据的用户删除)
(2)删除多条数据(只能在服务端实现,需要用到云函数)
db.collection("表名").where({
title: "啦啦啦"
}).remove().then(res => {
console.log(res);
});
3.修改数据
(1) 修改局部数据:局部更新是一次性只修改一条数据中的某几个字段的值,用的是update方法
db.collection("表名").doc("该条数据的id").update({
data: {
title: "修改后的标题"
}
}).then(res => {
console.log(res);
});
(2) 修改整体数据:一次性把所有数据都修改,用的是set方法。
db.collection("表名").doc("该条数据的id").set({
data: {
title: "修改后的标题",
author: "作者"
}
});
(3)一次更新多个数据:需要在服务器端,使用云函数来实现。