- 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是对的。其他值为空
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"},我里面是有数据的。有知道这个问题的吗
03-04