微信小程序 删除数组中指定对象
const _ = wx.cloud.database().command
wx.cloud.database().collection('hyzx').where({
openid:openid
}).update({
data: {
//.pull可以删除数组里的符合条件的字段
//官方文档:https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.pull.html
gwc: _.pull(
{
ID:_.eq(parseInt(ID))
}
)
},
success: function(ress) {
console.log('删除成功了老弟',ress)
}
})
欢迎留下你的看法
共 0 条评论