关系型 | 文档型 |
---|---|
数据库database | 数据库database |
表table | 集合collection |
行row | 记录record/doc |
列column | 字段field |
wx.cloud.database().collection('goods').get().then(res => {
//请求成功
this.setData({
list: res.data
})
}).catch(err => {
// 请求失败
console.log("请求失败",err);
})
2.条件查询
wx.cloud.database().collection('goods').where({
// 条件查询
name : '苹果'
}).get().then(res=>{
this.setData({
list:res.data
})
}).catch(err=>{
})
3.根据ID查询数据
wx.cloud.database().collection('goods').doc('d2fe6f20624d8ddf05433d3104698485').get().then(res=>{
console.log(res.data);
}).catch(err=>{
})
4.添加数据
wx.cloud.database().collection('goods').add({
data:{
name: '西瓜',
price: 20
}
}).then(res=>{
console.log('数据添加成功',res);
}).catch(res=>{
console.log("数据添加失败",res);
})
5.更新数据
wx.cloud.database().collection('goods').doc('d4107ab1624e5211056ee84840df15a9').update({
data:{
price : 100
}
}).then(res=>{
console.log("数据修改成功");
}).catch(res=>{
console.log("数据修改失败");
})
wx.cloud.database().collection('goods').doc('d4107ab1624e5211056ee84840df15a9').remove().then(res=>{
console.log('删除成功');
}).catch(res=>{
console.log('删除失败');
})
7…通过command数据库操作符,完成复杂的条件数据查询
数据库查询-复杂条件数据查询链接