更新的方法:
详细请参见api:
<button bindtap="bidUpdate">点击更新</button>
//JS逻辑
bidUpdate(){
db.collection("mylist").doc("116b1d3363194f3b000d0eeb2012c7ba").update({
data:{
//更改的字段
test1:"FFF"
}
}).then(res=>{
console.log(res);
})
},
删除的方法:
<button bindtap="bidDel">点击删除</button>
//JS逻辑
bidDel(){
db.collection("mylist").doc("116b1d3363194f3b000d0eeb2012c7ba").remove().then(res=>{
console.log(res);
})
},
计数的方法:
<button bindtap="bidCount">共计几条</button>
//JS逻辑
bidCount(){
db.collection("mylist").count().then(res=>{
console.log(res);
})
},