gpt4 book ai didi

azure - 如何从 Azure 函数返回 xlsx 文件?

转载 作者:行者123 更新时间:2023-12-04 01:43:31 29 4
gpt4 key购买 nike

我见过一些人尝试过。我无法重现他们的结果。乐于使用任何语言。我可以从 HTTP 触发器创建 xlsx。我想从另一个 HTTP 触发器返回该文件。

最佳答案

如果您已经生成了文件,则返回它只是创建带有附件的 HTTP 响应:

var result = new HttpResponseMessage(HttpStatusCode.OK);
result.Content = new ByteArrayContent(xlsxBytes);
result.Content.Headers.ContentDisposition =
new ContentDispositionHeaderValue("attachment") { FileName = "Book1.xlsx" };
result.Content.Headers.ContentType =
new MediaTypeHeaderValue("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
return result;

关于azure - 如何从 Azure 函数返回 xlsx 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45405338/

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