问题模块 框架类型 问题类型 终端类型 AppID 基础库版本
云开发 微信小程序 Bug 工具 wxf80ff3d9471f8f78 2.3.0
- 当前 Bug 的表现(可附上截图)
- 预期表现
批量更新成功
- 复现路径
- 提供一个最简复现 Demo
/**
* 批量更新Collection
* 更新username=jack 的所有用户,gender属性更新为1
*/
onUpdateCollectionUser: function(){
const db = wx.cloud.database();
db.collection('users').where({
username: "jack"
}).update({
data: {
gender: 1
},
success: console.log,
fail: console.error
})
},
微信小程序开发问题解答
微信小程序开发者回答:
你好,在微信小程序端不可以批量更新,也就是不能使用 collection.update,文档: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/guide/database/update.html
本文网址:http://www.91bianli.com/weixinxiaochengxu/47006.html