- 一直返回 1007 openpid数据不存在?
https://api.weixin.qq.com/wxa/getpluginopenpid?access_token=73_Yi7hErCpvWnlMemjdfMGEp8xVSVBsF4y5f9ihrgYAhT3SjtlwP-zWBIuYUxFsWe4fzQc7tkbo6hl9D3OSx4mjJg03xEmrhVl-3fRdJ7gk6FwvcDMsIlIy1eY0OYNILfADAEZC data: {errcode: 1007, errmsg: " rid: 65194e73-3fc2766d-3dc5ae06"}
2023-10-01 - wx.request()为什么个别网络环境不能正常访问服务器资源?
大部分时间可以正常访问数据服务器资源,个别网络环境下(可以通过其他途径正常数据服务器)不能获取资源。
2022-11-14 - wx.chooseMedia里的camera: 'back'不能限制只用后置摄像头,现在前后都可用?
wx.chooseMedia({ count: 1, mediaType: ['image'], sourceType: ['album', 'camera'], sizeType: ['compressed'], camera: 'back', success: function (res) { console.log(res.tempFiles[0]) //console.log(res.tempFiles[0].size) if (res.tempFiles[0].size<30000){ wx.showToast({ title: '照片太小', duration: 50000 }) console.log('照片太小') }else{ _this.setData({ imageSrc: res.tempFiles[0].tempFilePath, }) _this.loadImage(); } }, })
2022-11-11