- 云函数的security.imgSecCheck的图片检测图片大小限制1M?
云函数的security.imgSecCheck的图片检测图片大小限制1M根本就无法上传图片,而且上传图片的时候还要使用wx.getFileSystemManager()这个api,导致用户的体验很差 Promise.all(self.imgarr.map((tempFilePath, index) => { return new Promise(function (resolve, reject) { uni.showLoading({ title: '图片安全检测中' }); wx.getFileSystemManager() .readFile({ filePath: tempFilePath, success: r => { console.log("readSuccess:", r); wx.cloud.callFunction({ name: "imgcheck", data: { img: r.data }, success: result => { console.log(result) if(result.result.errCode==87014){ reject() } if(result.result.errCode==0 || result.result.errCode==404010){ resolve(1); }else{ reject() } }, fail: err => { reject() uni.showToast({ title: '图片超出1M', duration: 2000, icon: 'none' }); console.log("readFail:", err); } }) }, fail: err => { console.log("readFail:", err); } }); }); })).then((res) => { uni.showToast({ title: '检测通过', duration: 2000 }); self.submit() console.log('全部通过') }).catch(function (err) { uni.showToast({ title: '检测不通过', duration: 2000, icon: 'none' }); })
2019-10-08 - 最近为什么审核这么慢?
审核不通过的时候 能不能加上是哪个页面有问题
2019-09-11 - 最近为什么审核这么慢?
最近为什么审核这么慢?
2019-09-10 - 小程序图片显示闪烁的问题
- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 问一个小程序问题 小程序里面比如首页 已经加载了网络图片 然后打开一个新页面 在回到之前的首页 然后向下拉 那个图片会闪一下才出来 是什么问题导致的呢
2019-06-03 - 腾讯是如何处理小程序反编译的问题呢
现在版本网上有很多小程序的反编译教程,把我们做的小程序源码都拿了 。。。 腾讯为何一直不处理这个问题呢? 把网络请求整个逻辑都分析得清清楚楚。。甚至微信的小游戏都能看源码了
2018-09-23