为什么使用wx.chooseImage,在真机上选择相册最后一张图片,最上面完成按钮还是灰色?
wx.chooseImage({
//限制图片上传为4张
count: 6 - that.data.upload_list.length,
sizeType: ['original','compressed'],
sourceType: ['album', 'camera'],
success(res) {
//拿小程序生成的图片链接做图片的回显
that.setData({
upload_list: that.data.upload_list.concat(res.tempFilePaths)
})
// // 获取上传图片长度
var length = that.data.upload_list.length
// 大于1显示数量
if (length >= 1) {
that.setData({
camera: 1,
amount: length
})
}
// 隐藏上传图片功能
if (length == 6) {
that.setData({
upload: 0
})
}
}
})