⼩程序云函数update更新修改数据库内容报错:
query.updateisonlyava。。。
server error翻译thirdScriptError
errCode: -1 | errMsg: query.update is only available in server SDK / API;at "pages/result" page lifeCycleMethod onLoad function
Error: errCode: -1 | errMsg: query.update is only available in server SDK / API
百度翻译:
第三个脚本错误
errcode:-1;errmsg:query.update仅在服务器sdk/api中可⽤;在“pages/result”页lifecyclemethod onload函数中错误:errcode:-1 errmsg:query.update仅在服务器sdk/api中可⽤
报错代码 (代码可不看) :
let db = wx.cloud.database()
const _ = dbmand
let userCollection = db.collection("user")
userCollection.where({"_openid":"xxxxx"}).update({
data:{
score: _.push([99])
}
})
解决办法=>放到云函数中 (代码可不看):
// 云函数⼊⼝⽂件
const cloud = require('wx-server-sdk')
cloud.init()
const db = cloud.database()//链接数据库
const _ = dbmand
// 云函数⼊⼝函数
exports.main = async (event, context) => {
const { OPENID } = WXContext()
const userCollection = db.collection('user')//选取数据库
const thisID = userCollection.where({'_openid':OPENID})
().then(res=>{
if(res.data.length===0){//如果不存在 - 新增 res.data[0].score
return userCollection.add({
data:{
[`score${event.index}`]: [event.score],
'_openid': OPENID
}
})
}else{//如果表存在字段 - 更新
return thisID.update({
data:{
[`score${event.index}`]: _.push([event.score])
}
})
}
})
}
原因: 修改数据库内容需要管理员,或者调⽤服务器设置好的云函数来进⾏修改.⽤户是不能修改的.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论