- 4.0.6 for windows 版本云函数调用错误什么时候修复?二天了
[图片]调用云函数报错,最新版的pc端有严重bug pc端的微信支付商家助手都打不开!!!!!!!快点修复好吗?影响不大么,要么别放最新版的让用户下载了
07-03 - 部分用户升级微信PC客户端4.0.6后无法访问小程序?
如标题,请问是什么原因导致的,今天才开始有的。老 版本的微信可以正常使用,新版本的不对,PC端的小程序 是改了什么
07-02 - openid跟unionid为空?appid能正常获取
同个主体,不同小程序。 async getUserInfo(callback) { await c2.init(); try { // 调用云函数获取用户信息 const res = await c2.callFunction({ name: 'getOpenid' }); console.log('云函数返回结果', res); const unionid = res.result.unionid; callback(unionid); } catch (error) { console.error('获取用户信息失败:', error); throw error; } }, res返回的数据中appid是对的。其他值为空
2024-03-04 - 同个主体,不同小程序调用问题,为什么会调用成功,但是返回的数据有问题?
async getDbData(callback) { await c2.init(); try { // 查询数据库数据 const res = await c2.database().collection('db').get(); console.log('数据库返回结果', res); callback(res); } catch (error) { console.error('获取数据库数据失败:', error); throw error; } }, 数据库返回结果 {data: Array(0), errMsg: "collection.get:ok"},我里面是有数据的。有知道这个问题的吗
2024-03-04