我正在从服务器下载文件。我在那里设置一个我想在前端读取的文件名。这是我在服务器上执行此操作的方法:
string fileName = "SomeText" + DateTime.UtcNow.ToString() + ".csv";
return File(stream, "text/csv", fileName);
基本上我会返回不同类型的文件,有时csv有时xlsx有时pdf。所以我想在前端获取文件名,以便我可以将其保存为应有的格式,例如SomeText.pdf它将自动保存在本地计算机上作为pdf.
这是我的前端代码:
getFileFromServer(params).then(response => {
console.log('server response download:', response);
const type = response.headers['content-type'];
const blob = new Blob([response.data], { type: type, encoding: 'UTF-8' });
//const url = window.URL.createObjectURL(blob);
const link = document.createElement('a');
link.href = window.URL.createObjectURL(blob);
link.download = 'file.xlsx'; // Here I want to get rid of hardcoded value instead I want filename from server
link.click();
link.remove(); // Probably needed to remove html element after downloading?
});
我在“响应标头”下的“网络”选项卡中看到有一个Content-Disposition包含该信息的:
Content-Disposition: attachment; filename="SomeText22/08/2019 10:42:04.csv";
但我不知道它在我的回复中是否可用,以及如何在我的前端部分中读取它,以便我可以替换
link.download = 'file.xlsx';
来自服务器的路径..
非常感谢大家
梵蒂冈之花
蓝山帝景
婷婷同学_
相关分类