如何从 WCF 服务流下载文件?

问题描述 投票:0回答:1

我正在尝试通过使用 jQuery 调用 WCF 服务来远程下载 CSV 文件。由于该文件实际上并不驻留在服务器上,因此我一直在尝试将其作为流返回。由于我使用了

Content-Disposition
标头,客户端的浏览器应该会自动开始下载具有给定文件名的文件。

C#中我的WCF服务方法:

[OperationContract()]
public Stream GetCsvFile(int id)
{
    string s = ...;
    WebOperationContext.Current.OutgoingResponse.ContentType = "text/csv";
    WebOperationContext.Current.OutgoingResponse.Headers["Content-Disposition"] = "attachment; filename=\"file1.csv\"";
    return GenerateStreamFromString(s);
}

public Stream GenerateStreamFromString(string s)
{
    MemoryStream stream = new MemoryStream();
    StreamWriter writer = new StreamWriter(stream);
    writer.Write(s);
    writer.Flush();
    stream.Position = 0;
    return stream;
}

我的 jQuery AJAX 请求:

$.ajax({
    type: "POST",
    url: serviceUrl,
    cache: false,
    data: data,
    dataType: "text",
    contentType: "application/json; charset=utf-8",
    success: function() {
        // TODO...
    }
});

本次请求成功完成!我可以在响应中看到正确的 CSV 数据。但是,它不会在浏览器中启动实际的“文件下载”操作(目前在 Chrome 上进行测试)并且“file1.csv”不会保存到客户端的磁盘中。

在同一应用程序的旧 VB.NET 版本中,以下代码在 .aspx 页面代码隐藏中工作:

Response.Clear()
Response.ContentType = "text/csv"
Response.AddHeader("content-disposition", "attachment; filename="file1.csv")
Response.Write(s)
Response.End()

这将自动启动“file1.csv”的文件下载。甚至不会显示“另存为”对话框,文件会立即下载。这很酷。

那么,当我尝试使用 jQuery 调用 WCF 服务时,为什么它不起作用?

c# jquery .net ajax wcf
1个回答
0
投票

您需要在服务器端指定适当的 ContentType

© www.soinside.com 2019 - 2024. All rights reserved.