gpt4 book ai didi

c# - 如何从 Web API 传递 pdf 并从 MVC Controller 读取 pdf?

转载 作者:行者123 更新时间:2023-12-03 18:47:13 24 4
gpt4 key购买 nike

我有一个应该返回 PDF 的 Web API 服务。
然后我试图调用该 WebAPI 方法来阅读 PDF。

这是我的 API 方法:

    [HttpPost]
[Route("GetTestPDF")]
public HttpResponseMessage TestPDF()
{
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
response.Content = new StreamContent(new FileStream(@"C:\MyPath\MyFile.pdf", FileMode.Open, FileAccess.Read));
response.Content.Headers.ContentDisposition = new System.Net.Http.Headers.ContentDispositionHeaderValue("attachment");
response.Content.Headers.ContentDisposition.FileName = "MyFile.pdf";
response.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/pdf");

return Request.CreateResponse(HttpStatusCode.OK, response);
}

但是,当我去阅读回复时,我看不到 pdf 内容。我不确定我哪里出错了。

Controller 方法:
public ActionResult GetPDF()
{
var response = new HttpResponseMessage();

using (HttpClient httpClient = new HttpClient())
{
httpClient.BaseAddress = new Uri(@"my local host");
response = httpClient.PostAsync(@"api/job/GetTestPDF", new StringContent(string.Empty)).Result;
}

var whatisThis = response.Content.ReadAsStringAsync().Result;
return new FileContentResult(Convert.FromBase64String(response.Content.ReadAsStringAsync().Result), "application/pdf");
}

当我检查 whatisThis 变量时,我看到从我的 API 正确设置的内容类型和内容配置。但是我没有看到PDF的内容。

如何阅读 PDF 内容?

编辑:

如果我将内容作为 MVC 站点中的字符串读取,我会看到。 (我没有看到文件的实际内容)
{"Version":{"_Major":1,"_Minor":1,"_Build":-1,"_Revision":-1},"Content":{"Headers":[{"Key":"Content-Disposition","Value":["attachment; filename=MyFile.pdf"]},{"Key":"Content-Type","Value":["application/pdf"]}]},"StatusCode":200,"ReasonPhrase":"OK","Headers":[],"RequestMessage":null,"IsSuccessStatusCode":true}

我逐步完成了 WebAPI,它成功读取并设置了 response.Content 与文件内容。

仍然不确定这是 WebAPI 端还是 MVC 端的问题。

最佳答案

我最初会将此作为答案发布,因为格式化代码更容易!
我创建了一个 API 端点来返回一个 PDF 文件,如果我从浏览器调用它,文件会按预期打开。
由于您的 API 似乎没有这样做,让我们假设问题就在那里,因此是这样。

这是端点代码,与您的非常相似,但缺少 ContentDisposition 内容:

public HttpResponseMessage Get()
{
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
FileStream fileStream = File.OpenRead("FileName.pdf");
response.Content = new StreamContent(fileStream);
response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/pdf");

return response;
}

关于c# - 如何从 Web API 传递 pdf 并从 MVC Controller 读取 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43210055/

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