数据库自定义的id下数据更新不了
我想通过云函数改变一条数据库中我自定义的记录的数据:
const cloud = require(‘wx-server-sdk’)
cloud.init()
const db = cloud.database()
//const _ = db.command
exports.main = async (event, context) => {
db.collection(‘vote’).doc(‘hello’).update({
data: {
s1: 25
}
})
}
在vote集合,id为hello 中的s1的数据,但是函数执行后 s1并没有发生变化,
(这条记录是手动创建的)
如果我直接在客户端操作数据库,也出项了同样的问题,自定义的id中的数据更新不了。
本人小白一枚,望大神求解。