我有一些文件,在提取它们后,我使用JSZip将它们转换为zip,但这在Internet Explorer和Safari中不起作用,因为JSZip在IE的某些内容的URL中不起作用。
var zip = new JSZip();
var linkArr=$(xml1).find('groupnode:eq('+id_no+')').find('link');
var linklength = $(linkArr).length;
for(i=0;i<linklength;i++)
{
zip.file("../resources"+$(linkArr[i]).attr('src'),$(linkArr[i]).text());
}
content = zip.generate();
location.href="data:application/zip;base64," + content;
您是否知道其他任何提供跨浏览器支持的解决方案?
最佳答案
http://stuk.github.io/jszip/
大量的跨浏览器支持,包括IE和Safari,问题出在您的代码或URL中。在切换到其他解决方案之前,我会量身定制您的URL并调查可能导致问题的其他代码。
另请阅读我提供的URL中有关文件名问题的部分:
"Filename problems
The biggest issue with JSZip is that the filenames are very awkward, Firefox generates filenames such as a5sZQRsx.zip.part (see bugs 367231 and 532230), and Safari isn't much better with just Unknown. Sadly there is no pure Javascript solution (and working in every browsers) to this. However...
Solution-ish: Downloadify
Downloadify uses a small Flash SWF to download files to a user's computer with a filename that you can choose. Doug Neiner has added the dataType option to allow you to pass a zip for downloading. Follow the Downloadify demo with the following changes:
zip = new JSZip();
zip.add("Hello.", "hello.txt");
Downloadify.create('downloadify',{
...
data: function(){
return zip.generate();
},
...
dataType: 'base64'
});
Other solution-ish: Blob URL
With some recent browsers come a new way to download Blobs (a zip file for example) : blob urls. The download attribute on <a> allows you to give the name of the file. Blob urls start to be widely supported but this attribute is currently only supported in Chrome and Firefox (>= 20). See the example.
var blob = zip.generate({type:"blob"});
myLink.href = window.URL.createObjectURL(blob);
myLink.download = "myFile.zip";"
关于jquery - 使用Javascript(JSZip)创建Zip文件在IE和Safari中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16249078/