要实现的效果
点击头像右上角弹出选项,点击保存图片可以把图片下载保存到本地
实现方式关键代码
1.第一种,直接创建a标签给头像地址。进行下载
// 创建一个隐藏的 <a> 标签
const link = document.createElement("a");
link.href = headPic; // 设置为图片的 URL
link.download = "avatar.jpg"; // 设置下载文件名
// 触发下载
link.click()
2.第二种方式,使用blob
const saveImage = async () => {
try {
// 调用封装好的 fileDownload 方法,传入图片的 URL
const response = await fileDownload({ url: headPic.value });
const fileName="headpic.jpg";
// 提取文件名:从 Content-Disposition 头中获取文件名
// const contentDisposition = response.headers["content-disposition"];
// let fileName = "downloaded_image.jpg"; // 默认文件名
// if (contentDisposition) {
// const match = contentDisposition.match(/filename="?([^"]+)"?/);
// if (match && match[1]) {
// fileName = decodeURIComponent(match[1]); // 解码文件名
// }
// }
// 创建 Blob 并生成下载链接
const blob = new Blob([response], { type:response.type });
const link = document.createElement("a");
link.href = URL.createObjectURL(blob);
link.download = fileName; // 设置下载的文件名
link.click(); // 触发下载
// 释放 URL 对象
URL.revokeObjectURL(link.href);
showToast("保存成功")
} catch (error) {
showToast("保存失败")
}
// // 创建一个隐藏的 <a> 标签
// const link = document.createElement("a");
// link.href = headPic; // 设置为图片的 URL
// link.download = "avatar.jpg"; // 设置下载文件名
// // 触发下载
// link.click();
};
auth.js
//头像下载
export function fileDownload(info) {
return request({
url: "portal/filedownload",
method: "get",
params: info,
responseType:"blob"
});
}
后台代码:
/// <summary>
/// 文件下载
/// </summary>
/// <param name="url">文件地址</param>
/// <returns></returns>
//[AllowAnonymous]
public async Task<IActionResult> FileDownload(string url)
{
if (string.IsNullOrEmpty(url)) return BadRequest("图片 URL 不能为空");
using HttpClient client = new HttpClient();
try
{
// 发送 HTTP 请求下载图片
HttpResponseMessage response = await client.GetAsync(url);
response.EnsureSuccessStatusCode();
byte[] imageBytes = await response.Content.ReadAsByteArrayAsync();
var contentType = response.Content.Headers.ContentType.MediaType; //获取图片文件的扩展名
var fileName = System.IO.Path.GetFileName(new Uri(url).AbsolutePath); //获取文件名
return File(imageBytes, contentType, fileName);
}
catch (Exception ex)
{
return StatusCode(500, $"图片下载失败: {ex.Message}");
}
}