我创建了一个函数来为sharepoint下载多个文件的zip文件。
function create_zip() {
var zip = new JSZip();
$.each(filePathArray, function (i, path) {
var filename = path; //"file" + i +".txt";
var filee = path.substring(path.lastIndexOf('/') + 1);
var fileURL = appweburl + "/_api/SP.AppContextSite(@target)/web/GetFileByServerRelativeUrl('" + filename + "')/$value?@target='" + hostweburl + "'";//$('#file').attr('href');
var request = $.ajax({
url: fileURL,
type: "GET",
contentType: "text/plain",
mimeType: 'text/plain; charset=x-user-defined' // <-[1]
});
request.done(function (data) {
//var filee = "MoveFiles" + count + ".txt";
zip.file(filee, data, { binary: true }); // <- [2]
//count++;
vfilecount++;
console.log(vfilecount);
console.log(vfilecount);
if (count == vfilecount) {
zip.generateAsync({ type: "base64" }).then(function (data) {
location.href = "data:application/zip;base64," + data;
});
}
});
});
}
现在这段代码适用于Chrome和Mozilla,但不适用于IE。 请以任何方式提出建议。
答案 0 :(得分:0)
如https://github.com/Stuk/jszip/issues/376所示(此处将其转发给其他人):
mimeType: 'text/plain; charset=x-user-defined'
在IE 10中不起作用。$.ajax
用于下载文本内容,而不是二进制内容。与XmlHttpRequest相同而不设置responseType。浏览器将尝试解码来自UTF8的接收内容并将其破坏(因为它是二进制内容,而不是文本)。使用jQuery插件(如jquery.binarytransport.js)或直接使用xhr(使用xhr.responseType = "blob"
)。location.href = "data:application/zip;base64," + ...
无法在IE中使用。改为生成blob并使用saveAs
触发下载