从 ASP.NET Core Web API 返回文件可能具有挑战性,因为默认行为通常会导致 HttpResponseMessage 被序列化为 JSON。为了解决这个问题,我们需要使用不同的方法。
在提供的代码片段中,应该使用 IActionResult 接口返回派生的 ActionResult 类型。通过返回 FileStreamResult,我们可以指定要下载的文件的内容类型和文件名。
<code class="csharp">[Route("api/[controller]")] public class DownloadController : Controller { [HttpGet("{id}")] public async Task<IActionResult> Download(string id) { Stream stream = await GetStreamBasedOnIdAsync(id); if (stream == null) return NotFound(); return File(stream, "application/octet-stream", $"{filename}.ext"); } }</code>
在此更新的代码中:
此方法确保 HttpResponseMessage 包含正确的内容类型和文件名,允许从您的 Web API 无缝下载文件。
以上是如何从 ASP.NET Core Web API 返回文件?的详细内容。更多信息请关注PHP中文网其他相关文章!