- 小程序资源过期几天后续费,云接口调用被限制,请问是什么原因?
由于没有注意查看通知消息,微信云开发资源过期了几天,后来续费成功后,发现之前能正常使用的接口一下错误,请问是什么原因? <Error: cloud.callFunction:fail Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit (callId: 1670289208859-0.06941961940265085) (trace: 9:13:28 start->9:13:29 system error (Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit), abort)> Error: cloud.callFunction:fail Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit (callId: 1670289208859-0.06941961940265085) (trace: 9:13:28 start->9:13:29 system error (Error: errCode: -501003 exceed request limit | errMsg: Request exceeded the limit), abort) at N (https://lib/WASubContext.js:1:277673) at https://lib/WASubContext.js:1:304460 我们的接口调用代码大致如下 wx.cloud.init() wx.cloud.callFunction({ name: 'getSession', data: { groupId: groupId, timestamp: timeStamp, nonce: nonceStr } }).then(res => { console.log('signature', res) ... 省略代码 ... }).catch(e => { console.log(e) })
2022-12-06 - input bindinput的问题
代码如下,开发工具测试正常,但真机测试一直有问题,控件上能看到输入内容,但是日志打印获取不到。重启手机后就正常,过一段时间后问题又复现。手机是荣耀9X pro,系统是鸿蒙2.0.0,微信是8.0.28 <view class='flex' style='padding:10rpx'> <text style='color:#3D3D3D;margin:0rpx 30rpx'>账号:</text> <input bindinput="bindAccountInput" style='background:#fff;padding:10rpx' value='{{username}}' /> </view> <view class='flex' style='padding:10rpx'> <text style='color:#3D3D3D;margin:0rpx 30rpx'>密码:</text> <input bindinput="bindPasswordtInput" style='background:#fff;padding:10rpx' password="true" value='{{password}}' /> </view> bindAccountInput(e) { console.log("username:"+e.detail.value) }, bindPasswordtInput(e) { console.log("password:"+e.detail.value) }, [图片]
2022-10-19