刚开始我写的 其他不用管 主要是看图片上传的问题
/* 上传图片 */
chooseImage: function(e) {
var that = this;
wx.chooseImage({
count: this.data.uploadTotal - this.data.picfiles.length, //最多6张
//count: 1,
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
that.setData({
picfiles: that.data.picfiles.concat(res.tempFilePaths)
});
//每次返回俩个对应的地址 sizeType
let length = res.tempFilePaths.length;
for (var i = 0; i < length; i++) {
var imgUrl = res.tempFilePaths[i];
//上传服务器
wx.uploadFile({
url: app.globalData.Murl + '/index.php?controller=student_myself&action=upload_files',
filePath: imgUrl,
name: 'upload_files',
header: {
'content-type': 'multipart/form-data'
},
formData: {
type: 's_head_ico'
},
success: function(res) {
console.log('result', res)
if (res.statusCode == 200) {
that.data.head_img_url.push(JSON.parse(res.data).result.datas);
console.log(that.data.head_img_url, that.data.picfiles[i])
that.setData({
head_img_url: that.data.head_img_url
})
}
},
fail: function() {
}
})
}
}
})
},
后来发现 存到数据库的图片和上传的不一致,大概原因是 由于小程序的api写着每次只能传一张,所以我这里写的多图上传或导致 第一张图还没传过去还没成功第二张图又开始传了(尽量不用for循环,如果你有更好的请略过) ,这样下来 删俩张再添加俩张就会不一致了。主要 实现传完一张成功后再传一张用了一下简单递归, 后期修改如下:
/* 上传图片 */
chooseImage: function(e) {
var that = this;
wx.chooseImage({
count: this.data.uploadTotal - this.data.picfiles.length, //最多6张
//count: 1,
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function(res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
that.setData({
picfiles: that.data.picfiles.concat(res.tempFilePaths)
});
//每次返回俩个对应的地址 sizeType
let length = res.tempFilePaths.length;
var i=0;
imgUrl(i);
function imgUrl(i){
console.log(res.tempFilePaths[i])
wx.uploadFile({
url: app.globalData.Murl + '/index.php?controller=student_myself&action=upload_files',
filePath: res.tempFilePaths[i],
name: 'upload_files',
header: {
'content-type': 'multipart/form-data'
},
formData: {
type: 's_head_ico'
},
success: function (res) {
console.log('result', res)
if (res.statusCode == 200) {
that.data.head_img_url.push(JSON.parse(res.data).result.datas);
console.log(that.data.head_img_url, that.data.picfiles[i])
that.setData({
head_img_url: that.data.head_img_url
})
}
i++;
if (i >= length){
return false;
}else{
imgUrl(i);
}
},
fail: function () {
}
})
}
}
})
},
网友评论