- 预览和真机调试无法访问数据库,部分出现白屏,反馈不存在数据库问题?(补全问题)
1、云开发,前期上线运行正常,近期突然出现无法访问云数据库,部分手机无法显示动态数据,部分手机出现白屏;真机调试发现反馈问题如下: Error: errCode: -502005 database collection not exists | errMsg: [ResourceNotFound] Db or Table not exist. Please check your request, but if the problem cannot be solved, contact us. at new g (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:1198466) at Function.success (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:1338509) at C (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:121166) at Object.eval [as success] (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:121991) at B (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:1846082) at B (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:1846320) at eval (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:1847759) at Object.C (eval at n.call.document (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8794), <anonymous>:2:77573) at u (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:8529) at w (http://127.0.0.1:63383/remote-debug/runtime.js?devtools_ignore=true:1:17724) 2、数据库本身无问题,数据库权限无问题,小程序工具测试无问题,能够正常显示和调用云数据库数据; 3、环境设置正常,云函数环境设置正常。 [图片] [图片] 弄了很久也看了很多网上材料,还是没有解决,求各路大侠指点!不胜感激!
2020-11-09 - 小程序无法访问云服务器数据?
本人开发的个人微信小程序,采用的是云服务器,小程序正常运行一段时间后,近期突然有手机无法获取云服务器数据,本人手机又可以,在开发者工具和本人手机中怎么弄都没问题,但是用其他人手机预览、调试均无法访问服务器数据,最近其他人手机真机调试时出现问题如下,请问这个是啥问题,是服务器问题么? [图片]
2020-10-26 - 部分用户手机突然无法获取小程序云端数据库中动态数据的问题(用免费云服务器)?
小程序前期一直运行正常,最近突然有部分手机账号无法获取小程序动态数据,进去后后台数据显示不了,苹果和安卓手机都有,用调试工具和本人手机测试调试均无问题,少部分其他苹果和安卓手机能正常获取,这是什么问题?是因为用的免费版云服务器么?新用户扫码进去的也不行。 新换安卓手机调试,出现问题如下,哪位高手指点一下,非常感谢! [图片]
2020-10-15 - setdata赋值失败?
从云数据库中取数成功,res.data[0]是一个对象,已经成功取到数据了。但是无法通过this.setdata赋值,提示Uncaught (in promise) ReferenceError: traininglist is not defined,哪位大神指点一下,不胜感激。 onLoad: function (options) { var that = this ; const db = wx.cloud.database(); db.collection('traininglist').get().then(res =>{ that.setData({ traininglist:res.data[0] }) console.log(traininglist) }) },
2020-05-14