必须用云函数操作
基本结构是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)
}
}