- http,https跨域问题,线上项目不走代理?
H5微信公众号商城,域名http://mobile.mm.com,接口域名https://www.bb.com/api/; 场景描述:使用将H5项目转成小程序途中; 问题: [图片] 已申请证书,有证书,但是依旧报错跨域问题,强制https也报跨域, 前端代码写了代理,线上代码代理不生效(本地走了代理),接口域名走了http://mobile.mm.com,请大家指导!!如何让https时不报跨域,走到正确接口域名https://www.bb.com/api/? [图片]
2023-09-08 - uni.canvasToTempFilePath 画布保存成图片部分机型会出现空白?是什么原因?
使用uni.canvasToTempFilePath 绘制图片,部分机型会出现空白,ios出现率高,第一次生成图片的时候显示空白,偶尔会出现截取图片部分展示,再次上传图片会展示正常,各位大佬们有遇到过吗?怎么解决的? [图片]上传图片白屏; 在开发没复现,都是在用户那边报的。提供了几个账号图片也没复现。 ctxs.draw( false, setTimeout(() => { uni.canvasToTempFilePath( { canvasId: _this.canvasId, fileType: "jpg", width: originWidth, height: originHeight, quality: 1, success: (res) => { let isTempFilePath = res.tempFilePath; resolve(res.tempFilePath) uni.getFileInfo({ filePath:res.tempFilePath, success:imgInfo => { console.log(imgInfo.size, 'quality 前 图片大小sizesize'); uni.compressImage({ src: isTempFilePath, // 图片路径 quality: 1, // 图片压缩质量,0~100,默认80,仅对jpg有效 success: res => { if (index == 1) { let type = 0 if(this.role == 4 ||this.role == 8){ type = 1 } uploadimg(type, res.tempFilePath).then(rps => { this.zhuanghuoimglist.push(rps.message) }) }else if (index == 2){ uploadimg(type, res.tempFilePath).then(rps => { this.danjuimglist.push(rps.message) }) } }) } } } }) }, fail: (err) => { console.log(err) }, complete: () => { uni.hideLoading() } }, that ) }, 1000) )
2023-02-13