- 前辈们,云函数删除数据库表(集合)怎么做呀?
db.team_id.drop() db.collection('team_id_01').remove() 试了几种方法,报错: Cannot read property 'remove' of undefined Cannot read property 'drop' of undefined
2023-05-28 - 云函数event.userInfo.openId无法获取访问用户的openid了吗?
云函数event.userInfo.openId无法获取访问用户的openid了吗? 为什么之前的云函数调用这个现在还可以正常运行,而现在新建的云函数却报错? 甚至在新建的云函数里,今天上午还能用,下午就报错?????!!!!!!!! [图片] [图片] [图片]
2023-05-27 - 云函数生效但报错,云函数调用失败?求解答
[图片] [图片] 云函数代码: // 云函数入口文件 const cloud = require('wx-server-sdk') cloud.init({ env: cloud.DYNAMIC_CURRENT_ENV }) // 使用当前云环境 exports.main = async (event, context) => { try { const result = await cloud.openapi.subscribeMessage.send({ "touser": event.userInfo.openId, "templateId": '5s76E-SmUzThGyUzt9kwZHyM8bS2a9kp8n-eddGHI3Q', "page": 'pages/note/note', "miniprogramState": 'developer', "lang": 'zh_CN', "data": { "thing3": { "value": '做毕业设计' }, "time1": { "value": '2023年06月05日' } } }) return result } catch (err) { return err } } 调用云函数 cloud.callFunction({ name: 'sendNotification', data: { openid: 'oZ2FT5frfjqxcx-hO7FOZ8G4g1B0' // openid: 'oZ2FT5V65xu-S0TThSfeG15HooUY' }, success: res => { // console.log("okokokokoko") console.log(res) }, fail: err => { console.error(err) } })
2023-04-04 - 为什么云函数内容成功生效了,前端却报错:云函数调用失败?望解答
[图片]
2023-04-04