通过a标签下载文件,不能下载原因


Excel填写实例

Excel模板


我点击下载文件的时,能完整下载,但是有个同事使用的360 9.0版本不能正常,最后找到原因。

原因:a标签中参数中带有中文,导致不能正常下载

解决方案:

将中文进行转码

Excel填写实例
Excel模板

function downloadFile(fileName,downloadName){
fileName=encodeURI(encodeURI(fileName));
downloadName=encodeURI(encodeURI(downloadName));

window.location.href='../api/v1/file/downloadTemplate?templateFileName='+fileName+'&downloadFileName='+downloadName;

}



你可能感兴趣的:(css)