小程序
小游戏
企业微信
微信支付
扫描小程序码分享
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/query-array-object.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
1、建议把你写的脚本加上,让人在上面改,否则别人要一字一字输入,立即放弃。
如果您的意思是按照某个数组字段查询的话,这链接的内容帮到你。
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.elemMatch.html
如果是删除数组字段的某个项,这链接会有用。
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.pull.html
if(event.type == 'rvmnote'){ // 通过event.id删除指定数据 console.log(event.type,event.id,event.openid) await db.collection("userData") .where({ openid: "as13df23ads2f12123", }) .update({ noteBook:_.pull({ _id:_.eq("qer1q3wer21q3we2rrr") // event.id }) }) } 数据库测试数据: noteBook:[ {_id:"weq1q3wer21q3we2123",content:'abc'}, {_id:"qer1q3wer21q3we2rrr",content:'bcx'}, // 要删除的数据 {_id:"dfj25f6sd5fsd5dsf65",content:'hjh'} ]
可以创建一个参数让参数过去判断
这个不行吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/query-array-object.html
1、建议把你写的脚本加上,让人在上面改,否则别人要一字一字输入,立即放弃。
如果您的意思是按照某个数组字段查询的话,这链接的内容帮到你。
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.elemMatch.html
如果是删除数组字段的某个项,这链接会有用。
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.pull.html
if(event.type == 'rvmnote'){ // 通过event.id删除指定数据 console.log(event.type,event.id,event.openid) await db.collection("userData") .where({ openid: "as13df23ads2f12123", }) .update({ noteBook:_.pull({ _id:_.eq("qer1q3wer21q3we2rrr") // event.id }) }) } 数据库测试数据: noteBook:[ {_id:"weq1q3wer21q3we2123",content:'abc'}, {_id:"qer1q3wer21q3we2rrr",content:'bcx'}, // 要删除的数据 {_id:"dfj25f6sd5fsd5dsf65",content:'hjh'} ]
可以创建一个参数让参数过去判断
这个不行吗