gpt4 book ai didi

asp.net - HttpResponseMessage 不返回 ByteArrayContent - ASP.NET Core

转载 作者:行者123 更新时间:2023-12-04 22:56:41 25 4
gpt4 key购买 nike

我将文件存储在需要 Web API 返回的数据库中。数据库调用正确返回正确的字节数组(断点显示数组的长度约为 67000,这是正确的),但是当我调用 Web API 时,我从未在响应中获得该内容。我试过使用 MemoryStream 和 ByteArrayContent,但都没有给我应该得到的结果。我尝试从 Postman 和我的 MVC 应用程序调用,但都没有返回字节数组,只返回带有 header /成功/等的基本响应信息。

public HttpResponseMessage GetFile(int id)
{
var fileToDownload = getFileFromDatabase(id);
if (fileToDownload == null)
{
return new HttpResponseMessage(HttpStatusCode.BadRequest);
}
var response = new HttpResponseMessage(HttpStatusCode.OK);
response.Content = new ByteArrayContent(fileToDownload.FileData); //FileData is just a byte[] property in this class
response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment");
response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
return response;
}

我得到的典型响应(在任何地方都找不到字节内容):
{
"version": {
"major": 1,
"minor": 1,
"build": -1,
"revision": -1,
"majorRevision": -1,
"minorRevision": -1
},
"content": {
"headers": [
{
"key": "Content-Disposition",
"value": [
"attachment"
]
},
{
"key": "Content-Type",
"value": [
"application/octet-stream"
]
}
]
},
"statusCode": 200,
"reasonPhrase": "OK",
"headers": [],
"requestMessage": null,
"isSuccessStatusCode": true
}

也许我误解了我应该如何处理这些数据,但我觉得这应该是从 Web API 调用中返回的,因为我明确添加了它。

最佳答案

我认为您应该使用 FileContentResult,并且可能是比“application/octet-stream”更具体的内容类型

public IActionResult GetFile(int id)
{
var fileToDownload = getFileFromDatabase(id);
if (fileToDownload == null)
{
return NotFound();
}

return new FileContentResult(fileToDownload.FileData, "application/octet-stream");
}

关于asp.net - HttpResponseMessage 不返回 ByteArrayContent - ASP.NET Core,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42862627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com