编写程序时remove有时能删除记录,但大多数时间删除不了,一直这样,云上选择本地调试,只要打开调试板,就能删除,否则,基本删除不了。
const cloud = require('wx-server-sdk');
cloud.init({
env: cloud.DYNAMIC_CURRENT_ENV
});
const db = cloud.database();
const _ = db.command;
exports.main = async (event, context) => {
try{
return await db.collection(event.m).where({
cs:_.in([true,false])
})
.remove()
}catch(e){
console.error(e)
}
};
很神奇,怎么办到的