之前选择图片上传一直没问题,突然发现安卓调出现 fail cancle
//图片选择
showAction:function(){
var that=this;
wx.showActionSheet({
itemList: ['拍照', '从手机相册选择'],
success: function(res) {
console.log(res);
if(res.tapIndex == 0){
that.setData({
sourceType:['camera']
})
}else if(res.tapIndex == 1){
that.setData({
sourceType:['album']
})
}
that.choice();
},
fail: function(res) {
}
})
},
choice: function () {
var that = this;
var sourceType=this.data.sourceType;
wx.showModal({
content:'3'
});
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType:sourceType, // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
var tempFilePaths = res.tempFilePaths;
wx.showModal({
content:JSON.stringify(res)
});
that.setData({
image_photo: tempFilePaths
});
wx.showModal({
content:tempFilePaths[0]
});
that.uploadPhoto();
},
fail:function(res){
wx.showModal({
content:JSON.stringify(res)
});
},
complete:function(res){
wx.showModal({
content:JSON.stringify(res)
});
}
})
},
网友回复:
如***:
突然好了,好莫名
如***:系统记录