小程序
小游戏
企业微信
微信支付
扫描小程序码分享
苹果系统上传图片,相册选择的时候是已经设置原图选择了,最终上传到服务器,10M的下载下来只有4M了,有没有解决办法? 安卓系统试了一下上传图片,图片没有被压缩。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
iphone8 系统:11.2.6
微信什么的都为最新
代码片段:
for (var k = 0; k<forArr.length;k++){
wx.uploadFile({
url: url,
filePath: forArr[k].imgSrc,
name: 'Filedata',
success: function (res) {
//saveText[that.data.num] = true;
//that.setData({ saveText: saveText })
console.log("上传图片成功:")
var list = JSON.parse(res.data);
console.log(list)
if (imgUrlStorage[that.data.num - 1] == undefined || imgUrlStorage[that.data.num - 1] == null) { imgUrlStorage[that.data.num - 1]=[]}
imgUrlStorage[that.data.num-1].push(list.path)
//that.setData({ protectshow: false })
//wx.hideLoading()
console.log(imgUrlStorage)
},
fail: function (res) {
//saveText[that.data.num] = false;
wx.showToast({title: '保存失败,请重新保存',icon: 'none'})
imgUrlStorage[that.data.num - 1]=[];
return false;
}
})
可先看下上面提供的链接,提供正确的代码片段
是设置了压缩的属性了么?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
iphone8 系统:11.2.6
微信什么的都为最新
代码片段:
for (var k = 0; k<forArr.length;k++){
wx.uploadFile({
url: url,
filePath: forArr[k].imgSrc,
name: 'Filedata',
success: function (res) {
//saveText[that.data.num] = true;
//that.setData({ saveText: saveText })
console.log("上传图片成功:")
var list = JSON.parse(res.data);
console.log(list)
if (imgUrlStorage[that.data.num - 1] == undefined || imgUrlStorage[that.data.num - 1] == null) { imgUrlStorage[that.data.num - 1]=[]}
imgUrlStorage[that.data.num-1].push(list.path)
//that.setData({ protectshow: false })
//wx.hideLoading()
console.log(imgUrlStorage)
},
fail: function (res) {
//saveText[that.data.num] = false;
//that.setData({ saveText: saveText })
//wx.hideLoading()
wx.showToast({title: '保存失败,请重新保存',icon: 'none'})
//that.setData({ protectshow: false })
imgUrlStorage[that.data.num - 1]=[];
return false;
}
})
}
可先看下上面提供的链接,提供正确的代码片段
是设置了压缩的属性了么?