- 当前 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
db.collection(...).where(...).update is not a function;at api request success callback function
TypeError: db.collection(...).where(...).update is not a function这个错,现在也不是很清楚是不能用那个还是不能在success里用啊,求解答
基础库 选哪个比较好吗 有最新的
你好,解决了吗,我纠结了好久好久啊
username:'hhh3'
}).update({
data:{
age: 10
}, 然后报错的问题。什么是吧基础库升级到最新版本呢?我在微信公众平台把”基础库版本设置“设置到了最新2.10.3.但是还是报错。这是为什么呢?我是个新手,希望您能指点我一下。谢谢您。