문제:
ASP.Net Core Web API에서 파일을 반환하려고 할 때 ASP.Net Core Web API 컨트롤러에서 HttpResponseMessage는 파일이 아닌 애플리케이션/json 콘텐츠 헤더가 있는 JSON으로 반환됩니다.
코드 시도:
public async Task<HttpResponseMessage> DownloadAsync(string id) { var response = new HttpResponseMessage(HttpStatusCode.OK); response.Content = new StreamContent({{__insert_stream_here__}}); response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream"); return response; }
원인:
HttpResponseMessage는 [HttpGet] 속성으로 장식된 작업에서 반환되기 때문에 웹 API 프레임워크에서 모델로 처리됩니다.
해결책:
파일을 올바르게 반환하려면 IActionResult를 반환하도록 컨트롤러 작업을 수정하세요.
[Route("api/[controller]")] public class DownloadController : Controller { //GET api/download/12345abc [HttpGet("{id}")] public async Task<IActionResult> Download(string id) { Stream stream = await {{__get_stream_based_on_id_here__}}; if(stream == null) return NotFound(); // returns a NotFoundResult with Status404NotFound response. return File(stream, "application/octet-stream", "{{filename.ext}}"); // returns a FileStreamResult } }
참고:
프레임워크는 응답이 완료된 후 사용된 스트림을 삭제합니다. 응답이 전송되기 전에 using 문을 사용하여 스트림을 삭제하면 예외가 발생하거나 응답이 손상됩니다.
위 내용은 ASP.Net Core Web API에서 JSON 대신 파일을 반환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!