美好的一天,伙计们,
我正在尝试从 Axios 请求的 ASP.NET Core Web API 下载文件。
这是我的示例 API 方法。(基于此stackoverflow 问题的代码)
[HttpPost("download")]
public async Task<IActionResult> DownloadFile(){
...
return File(new MemoryStream(mypdfbyte), "application/octet-stream", "myfile.pdf");
}
这是我的示例 axios 请求。
axios.post(`api/products/download`).then(response=>{
console.log(response.data)
}).catch(error=>{ console.log(error) })
但我只收到这个。没有下载文件出现。
我希望你能帮我从我的控制器 api 下载一个文件。
喵喔喔
人到中年有点甜
相关分类