根据checkbox的选择,进行数据批量更新,是不是只能循环?
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-sdk-api/database/command/Command.in.html
let IDs = [checkbox选中的_id]
where({_id:_.in(IDs)}).update(…)
不知道你说的批量更新是指前端还是后端,可以在checkbox状态事件里做整合数据处理(如更改对应的数组),最后直接把最新的数据提交给接口。至于接口如何批量更新,方法很多,一条update语句或者批量insert语句等等。