文件下载用ajax请求后没响应

文件下载用ajax请求后没响应

// $.ajax({
//     url:,
//     type:'POST',
//     dataType:'json',//json 返回值类型
//     data:{
//         fileId:fileId
//     },
//     success:function(data){
//         console.log("downFile-------");
//         MaskUtil.unmask();
//     },
//     error:function () {
//         MaskUtil.unmask();
//         alert("下载异常!", "", null, {type: 'warning'});
//     }
// });
改用 window.location.href=url 即可
window.location.href=basePath+"restful/downloadFile.do?fileId="+fileId;
点下载退出登录,记得带header 属性
var eleForm = $("<form method='get'></form>");
    eleForm.attr("action",basePath + "restful/downloadFile.do");
    eleForm.append($("<input />").attr("type", "hidden").attr("name", "fileId").attr("value", fileId));
    eleForm.append($("<input />").attr("type", "hidden").attr("name", "AiSeeCloudToken").attr("value", sessionStorage["AiSeeCloudToken"]));
    $(document.body).append(eleForm);
    eleForm.submit();
  

相关推荐