小程序云数据库同样的方式访问出现问题
const app = getApp() const db = wx.cloud.database(); //数据库 Page({ data: { }, onLoad: function () { console.log( '同样的访问方式,同样的表名,第二个获取确得到错误,仔细检查了数据库的所有 doc,完全正确' ) console.log( 'https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/devtools.html' ) db.collection( 'FANUCMill' ).doc( 'UpdataTime' ).get().then(res => { console.log( '集合名字为:FANUCMill' ,res.data) }) db.collection( 'FANUCLathe' ).doc( 'UpdataTime' ).get().then(res => { console.log( '集合名字为:FANUCLathe' , res.data) }) }, }) |
我遇到了一个神奇的问题,不一样名字的两个集合,一个能访问到内部的DOC, 一个访问出错。代码什么都一样,数据库内都右 UpdataTime 的 doc,求官方解答下是什么原因,昨天一晚上都在弄,没有搞定,需要APPID