小程序
小游戏
企业微信
微信支付
扫描小程序码分享
- 图片上传损坏
- 有的图片能上传成功,有的上传之后变成如图,请问应该怎么解决
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
楼主的问题解决了吗 ?我也出现了相同的问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
// 手机机型iphone 6splus 版本10.2
// 微信版本6.7.3
// 选择照片代码
chooseimage_sh: function () {
var _this = this;
var openid;
wx.getStorage({
key: 'openid',
success: function (res_openid) {
// console.log(res_openid.data)
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
_this.setData({
tempFilePaths_sh: res.tempFilePaths[0]
array4: res.tempFilePaths
})
if (typeof (_this.data.tempFilePaths_sh) != "undefined") {
img_sh:'section_img_close',
}
},
// 上传代码
wx.uploadFile({
url: getApp().globalData.ip+'/Interface/I_File.ashx?action=uploadzp&i='+i+'&txkey=' + this_.txkey +'&shzkey=' + this_.shzkey,
filePath: arr_v,
name: 'file',
按照教程提供:https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
// 上传文件代码少发了些
var arr_v;
arr_v = this_.tempFilePaths[0];
wechatide://minicode/tSB11qmp7b3P
这样可以吗
在哪里上传图片
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
楼主的问题解决了吗 ?我也出现了相同的问题
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
// 手机机型iphone 6splus 版本10.2
// 微信版本6.7.3
// 选择照片代码
chooseimage_sh: function () {
var _this = this;
var openid;
wx.getStorage({
key: 'openid',
success: function (res_openid) {
// console.log(res_openid.data)
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
_this.setData({
tempFilePaths_sh: res.tempFilePaths[0]
array4: res.tempFilePaths
})
if (typeof (_this.data.tempFilePaths_sh) != "undefined") {
_this.setData({
img_sh:'section_img_close',
})
}
}
})
}
})
},
// 上传代码
wx.uploadFile({
url: getApp().globalData.ip+'/Interface/I_File.ashx?action=uploadzp&i='+i+'&txkey=' + this_.txkey +'&shzkey=' + this_.shzkey,
filePath: arr_v,
name: 'file',
success: function (res) {
}
})
按照教程提供:https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
// 上传文件代码少发了些
var arr_v;
arr_v = this_.tempFilePaths[0];
wechatide://minicode/tSB11qmp7b3P
这样可以吗
在哪里上传图片