- 通过云函数获取openId报错?-501003 exceed request limit ,求解答?
cloud.callFunction:fail Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit (callId: 1667282362869-0.00019987901025264598) (trace: 13:59:22 start->13:59:23 system error (Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit), abort)
2022-11-01 - cloud function service error code -501003 ?
我就调用一次云函数,之前正常,后来突然报错:cloud function service error code -501003。 1.重启当前项目没用,还是一样的报错; 2.另外打开一个新项目,使用同样的代码却能调用成功。 详细报错: dbController err: Error: errCode: -404011 cloud function execution error | errMsg: cloud.callFunction:fail requestID , cloud function service error code -501003, error message Request exceeded the limit; at cloud.callFunction api; at new t (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:17) at u (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:17) at l (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:17) at Function.success (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:17) at f (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:2) at WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:2 at f (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:26) at Function.<anonymous> (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:26) at f (WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:2) at WASubContext.js?t=wechat&s=1682528119331&v=2.14.1:2 ----------------------------分割 找到原因了,谢谢各位。 env参数必须填上自己的环境ID,否则就会遇到这个提问中遇到的所有问题。 onLaunch: function () { if (!wx.cloud) { console.error('请使用 2.2.3 或以上的基础库以使用云能力'); } else { wx.cloud.init({ // env 参数说明: // env 参数决定接下来小程序发起的云开发调用(wx.cloud.xxx)会默认请求到哪个云环境的资源 // 此处请填入环境 ID, 环境 ID 可打开云控制台查看 // 如不填则使用默认环境(第一个创建的环境) // env: 'my-env-id', traceUser: true, }); }
2023-04-27 - 真机调试一直报错 no such file or directory, access ?
本地测试没有问题,真机调试一直报错 VM61:241 error occurs:ENOENT: no such file or directory, access '/storage/emulated/0/Android/data/com.tencent.mm/MicroMsg/wxanewfiles/7aa4b87a5745cb4ba620783bdc762db2/miniprogramLog/log2' 本地测试可以写入数据到数据库,真机调试报错,且不能将数据写入数据库
2021-09-30