获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
会不会是你要修改的数据库的权限问题?数据库的权限默认是所有用户可读,只有创建者可以读写
云开发,批量更新数据 update ?以下为云函数代码. 就是当我下架一本书刊的时候,要批量把书刊的内容也下架.不报错,也不执行. 请大神指点下,如果批量更新数据. try{ return await db.collection('BookLists').doc(_id).update({ data: { _cnt : 0 //书刊下架 } }) }catch(e){ } //书刊内容 try { return await db.collection('BookDetails').where({ bookid: _id }) .update({ data: { _cnt: 0 //书刊内容下架 } }) } catch(e) { }
2020-08-22