timer
。downloadImage
函数中,如果timer
已经存在,就清除它,以确保每次只有一个下载任务在进行。data
中获取的,保存在fullScreenImageUrl
字段中。wx.downloadFile
函数下载图片,如果下载成功,就获取到图片的临时文件路径。saveImage
函数,将图片保存到系统相册。saveImage
函数中,使用wx.saveImageToPhotosAlbum
函数将图片保存到系统相册。如果保存成功,就显示一个成功提示;如果保存失败,就显示一个失败提示。let timer; // 定义一个定时器
Page({
data: {
fullScreenImageUrl: "", // 下载图片的URL
},
downloadImage() {
let that = this;
// 清除上一次的定时器
if (timer) {
clearTimeout(timer);
}
// 设置新的定时器
timer = setTimeout(function() {
// 显示加载提示
wx.showToast({
title: '下载中...',
icon: 'loading'
});
let link = that.data.fullScreenImageUrl; // 获取图片URL
// 下载文件
wx.downloadFile({
url: link,
success(res) {
if (res.statusCode === 200) {
const filePath = res.tempFilePath; // 获取图片临时文件路径
// 检查权限
wx.getSetting({
success(res) {
if (!res.authSetting['scope.writePhotosAlbum']) {
// 请求授权
wx.authorize({
scope: 'scope.writePhotosAlbum',
success() {
that.saveImage(filePath); // 保存图片
},
fail() {
// 引导用户开启授权
wx.showModal({
title: '提示',
content: '您已拒绝我们保存图片到相册,您可以在设置中开启',
success(res) {
if (res.confirm) {
wx.openSetting({
success(res) {
console.log(res.authSetting)
}
})
}
}
})
}
})
} else {
that.saveImage(filePath); // 保存图片
}
}
});
}
},
fail() {
wx.showToast({ // 添加失败提示框
title: '下载失败',
icon: 'none',
duration: 2000
});
}
});
}, 1000); // 1000 毫秒的延迟
},
// 保存图片
saveImage(filePath) {
// 保存图片到系统相册
wx.saveImageToPhotosAlbum({
filePath: filePath,
success(res) {
wx.showToast({ // 添加成功提示框
title: '保存图片成功',
icon: 'success',
duration: 2000
});
},
fail() {
wx.showToast({ // 添加失败提示框
title: '保存图片失败',
icon: 'none',
duration: 2000
});
}
});
},
});