上传文件 显示loading toast
显示loading toast
//显示loading
wx.showLoading({
title: '上传中。。。',
})
//关闭显示loading
wx.hideLoading()
//显示toast
wx.showToast({
title: '上传图片成功',
})
//上传图片
//上传图片
chuantupian() {
let that = this;
let timestamp = (new Date()).valueOf();
wx.chooseImage({
success: chooseResult => {
wx.showLoading({
title: '上传中。。。',
})
// 将图片上传至云存储空间
wx.cloud.uploadFile({
// 指定上传到的云路径
cloudPath: timestamp + '.png',
// 指定要上传的文件的小程序临时文件路径
filePath: chooseResult.tempFilePaths[0],
// 成功回调
success: res => {
console.log('上传成功', res)
wx.hideLoading()
wx.showToast({
title: '上传图片成功',
})
if (res.fileID) {
that.setData({
zhaopian: '图片如下',
imgUrl: res.fileID
})
}
},
})
},
})
},