问题模块 框架类型 问题类型 终端类型 微信版本 基础库版本
框架 微信小程序 Bug 客户端 6.7.2 2.3.0
华为P9手机,微信小程序调用摄像头拍照-->确定-->完成。点击图片右上方的 完成 按钮后,有时能直接成功上传;有时会跳转到图片预览页面,这时再选择刚才拍摄的照片,点击右上方的 完成 按钮会直接闪退。如果不拍照,直接在预览页选择图片上传,则不会出现闪退。
代码如下:
wx.chooseImage({
count: 1, //最多可以选择的图片总数
sizeType: ['compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
var tempFilePaths = res.tempFilePaths;
//启动上传等待中...
wx.showToast({
title: '正在上传...',
icon: 'loading',
mask: true,
duration: 10000
})
var uploadImgCount = 0;
for (var i = 0, h = tempFilePaths.length; i < h; i++) {
wx.uploadFile({
url: webUrl + '/uploadImg.html',
filePath: tempFilePaths[uploadImgCount],
name: 'file',
formData: {
'imgIndex': uploadImgCount,
'picName': picName,
'oper_id': oepr_id,
'pic_id': pic_id,
'pic_type': 6,
'pic_name': pic_name,
'pic_name2': pic_name2,
'pic_module': pic_module
},
header: {
"Content-Type": "multipart/form-data"
},
success: res => {
uploadImgCount++;
var data = JSON.parse(res.data);
//如果是最后一张,则隐藏等待中
if (uploadImgCount == tempFilePaths.length) {
wx.hideToast();
}
if (data.success == 'true') {
//服务器返回格式: { "Catalog": "testFolder", "FileName": "1.jpg", "Url": "https://test.com/1.jpg" }
var real_img = data.real_img;
var pic_id = data.pic_id;
} else {
wx.showToast({
title: data.msg,
icon: 'none'
})
}
},
fail: function (res) {
wx.hideToast();
wx.showModal({
title: '错误提示',
content: '上传图片失败',
showCancel: false,
success: function (res) { }
})
}
});
}
}
});
微信小程序开发问题解答
微信小程序开发者回答:
你好,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
微信小程序开发者回答:
机型:华为p9 微信版本:6.7.2 代码片段:wechatide://minicode/1NOy1pmZ7E2o
微信小程序开发者回答:
,你好,相关的事件没有哦
微信小程序开发者回答:
wechatide://minicode/4yqsBumX7C2r 用这个代码片段试试
本文网址:http://www.91bianli.com/weixinxiaochengxu/46042.html