小程序
小游戏
企业微信
微信支付
扫描小程序码分享
线上云函数不管是声明式是获取axios结果还是.then,都接收不到请求的返回。
线上的云函数测试,声明式返回undefined,.then没有返回任何东西
没有任何报错,依赖都是上传好的
本地云函数测试全部正常可以接收到返回
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
const resp = await axios.get(baseUrl, {
params: {
key1:key1,
key2: key2
}
}).then(res => {
return res.data
})
我和楼主一模一样
换了二楼的代码格式
还是不行
错误提示
WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2 Unhandled promise rejection Error: cloud.callFunction:fail Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit (callId: 1648055365482-0.6104749897090547) (trace: 1:9:25 start->1:9:25 system error (Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit), abort)
at S (WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2)
at WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2
at n (WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2)(env: Windows,mp,1.05.2203181; lib: 2.23.1)
本地调试都没有问题
一传到云服务器就不行了,报错就上面的
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
const resp = await axios.get(baseUrl, {
params: {
key1:key1,
key2: key2
}
}).then(res => {
return res.data
})
我和楼主一模一样
换了二楼的代码格式
还是不行
错误提示
WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2 Unhandled promise rejection Error: cloud.callFunction:fail Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit (callId: 1648055365482-0.6104749897090547) (trace: 1:9:25 start->1:9:25 system error (Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit), abort)
at S (WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2)
at WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2
at WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2
at n (WASubContext.js?t=wechat&s=1648052031884&v=2.23.1:2)(env: Windows,mp,1.05.2203181; lib: 2.23.1)
本地调试都没有问题
一传到云服务器就不行了,报错就上面的