小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 当前 Bug 的表现(可附上截图)
测试云函数时候提示:user code exception caught
翻译结果为捕获用户代码异常(当时是没有用云函数调用云函数的方法call.function而直接在里面嵌套其他方法导致这个报错,现在改完之后却不执行调用的云函数)
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
写了一个云函数,先查询数据库要推送消息的集合列表,然后在调用推送模板消息的云函数,现在不报错,但也不执行推送模板,返回结果为null
代码如下:
exports.main = async (event, context) => {
try {
const query = await questionDB.where({
formid_settime: _.lt(today),
pushed:false
}).get()
let borrow_list = query.data[0]
if(borrow_list == null){
return false
}else{
const res = await cloud.callFunction({
name: 'openapi',
data: {
action: 'sendTemplateMessage',
formId: borrow_list.formid,
other: {
borrowId: borrow_list._id,
bookNum: borrow_list.bookNum,
returnDate: borrow_list.return_date
}
})
return res.result
} catch (e) {
console.error(e)
数据查询的部分调试了有返回结果,但是组装数据给模板函数用就失败了,为什么呢,云函数调用其他云函数是用cloud callfunction没错吧
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
写了一个云函数,先查询数据库要推送消息的集合列表,然后在调用推送模板消息的云函数,现在不报错,但也不执行推送模板,返回结果为null
代码如下:
exports.main = async (event, context) => {
try {
const query = await questionDB.where({
formid_settime: _.lt(today),
pushed:false
}).get()
let borrow_list = query.data[0]
if(borrow_list == null){
return false
}else{
const res = await cloud.callFunction({
name: 'openapi',
data: {
action: 'sendTemplateMessage',
formId: borrow_list.formid,
other: {
borrowId: borrow_list._id,
bookNum: borrow_list.bookNum,
returnDate: borrow_list.return_date
}
}
})
return res.result
}
} catch (e) {
console.error(e)
}
}
数据查询的部分调试了有返回结果,但是组装数据给模板函数用就失败了,为什么呢,云函数调用其他云函数是用cloud callfunction没错吧