# 查询单个数据库某个特定的数据
wx.cloud.database().collection('goods').where({name:"橘子"}).get()
.then(res=>{
console.log(res)
})
## doc单条数据查询(_id)
```javascript
wx.cloud.database().collection('goods').doc("8655d51b639873f701956aea1b9e3ba4").get()
.then(res=>{
console.log(res)
this.setData({
list:res.data
})
})
.catch(err=>{
console.log(err)
})
```
## 数据添加add
```javascript
wx.cloud.database().collection("goods")
.add({
data:{
name:"西瓜",
price:20
}
})
.then(res=>{
console.log(res)
})
.catch(err=>{
console.log("添加失败",err)
})
```
。
## 修改数据updata 需要用doc查询
```javascript
wx.cloud.database().collection("goods").doc("e707b2f7639888b501702c2025ae376d")
.update({
data:{
price:100
}
})
.then(res=>{
console.log(res)
})
.catch(err=>{
console.log("添加失败",err)
})
```
## 删除数据
```javascript
wx.cloud.database().collection("goods").doc("e707b2f7639888b501702c2025ae376d")
.remove()
.then(res=>{
console.log(res)
})
.catch(err=>{
console.log("删除失败",err)
})
```