问题模块 框架类型 问题类型 终端类型 AppID 基础库版本
云开发 微信小程序 Bug 工具 wx1e8958bf95e6bf7e 2.2.5
db.collection('applyInfo').get({
success:function(res){
console.log(res.data[index]._id)
var id=res.data[index]._id
db.collection('applyInfo').doc(id).remove({
success: console.log
})
}
})
集合applyInfo中有三个以上元素时可以删除,但是一旦低于三个就无法继续删除,程序不报错但是会显示
{stats: {…}, errMsg: "document.remove:ok"}errMsg: "document.remove:ok"stats: {removed: 0}__proto__: Object
代码片段
db.collection('applyInfo').get({ success:function(res){ console.log(res.data[index]._id) var id=res.data[index]._id db.collection('applyInfo').doc(id).remove({ success: console.log }) } })
微信小程序开发问题解答
微信小程序开发者回答:
请问你是想要删除集合下的数据吗?请参考https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/database/collection.remove.html
本文网址:http://www.91bianli.com/weixinxiaochengxu/37568.html