Pleasssse帮助我...... 我在服务器端(c#)有一个xlsm文件(带有宏的excel),并希望在客户端(javascript,angularjs)下载它。 所以..在服务器端控制器中我正在返回一个HttpResponseMessage并在客户端 - 下载它。
问题是,在打开已下载的文件时,它已损坏...
我做了一个简短的测试案例来证明这个问题。
服务器端(c#ApiController):
[HttpGet]
public HttpResponseMessage exportDPs()
{
var response = new HttpResponseMessage(System.Net.HttpStatusCode.OK);
var stream = new FileStream(@"D:\excel\data.xlsm", FileMode.Open);
response.Content = new StreamContent(stream);
response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment");
response.Content.Headers.ContentDisposition.FileName = "DPs.xlsm";
response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
response.Content.Headers.ContentLength = stream.Length;
response.StatusCode = System.Net.HttpStatusCode.OK;
return response;
}
客户端(javascript,angularjs):
$scope.exportDPs = function () {
$http({
method: GET,
url: '../Api/DPs/exportDPs',
}).success(function (data) {
var file = data;
var encodedUri = encodeURI(file);
var link = document.createElement("a");
link.setAttribute("href", "data:application/vnd.ms-excel.sheet.macroEnabled.12;charset=utf-8,\uFEFF" + encodedUri);
link.setAttribute("download", "DPs");
link.click();
})
}
答案 0 :(得分:0)
问题可能在于您使用Unicode字节顺序标记(BOM) - \uFEFF
为服务器中的内容添加前缀。 BOM仅对文本文件有用,但XLSM是二进制文件(更具体地说,它是XML文件的ZIP文件)。
然而,最好的办法是简化JavaScript,以便直接下载文件,而不是尝试在后台下载文件,并从中创建数据URI。
这应该做你想要的:
$scope.exportDPs = function () {
var link = document.createElement("a");
link.setAttribute("href", "../Api/DPs/exportDPs");
link.setAttribute("download", "DPs");
link.click();
}