【微信小程序 I 云开发 I 数据库】多个条件同时成立的删除操作

必须用云函数操作

基本结构是db.collection( '集合名' ).where({ 条件1 }).where({ 条件2 }).remove( )

// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()
const _ = db.command

exports.main = async (event, context) => {
  
  try {    
    return await db.collection('UserList').where(      
        {
          openid : event.a
        }).where({
          softName : event.b
        }).where(  
        {
          kjjId : event.c
        }
      ).remove()
  }
  catch (e) {
    console.error(e)
  }
}

 

你可能感兴趣的:(云开发,数据库,【微信小程序,I,云开发】)