HttpResponseMessage没有返回ByteArrayContent - ASP.NET Core

时间:2017-03-17 16:27:59

标签: asp.net asp.net-mvc asp.net-core asp.net-core-webapi

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

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调用返回,因为我明确地添加了它。

1 个答案:

答案 0 :(得分:4)

我认为你应该使用FileContentResult,可能是一个比#34; 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");
}