图片下载

图片下载采用get请求

法1:

 

window.location.href="/download-ewm?ewmSrc="+$scope.barErCodeSrc.showSrc;

 

法2:

var imgPathURL="/download-ewm?ewmSrc="+$scope.barErCodeSrc.showSrc;
        if ($("#IframeReportImg").length==0)
            $('<iframe style="display:none;width:0;height:0" id="IframeReportImg" name="IframeReportImg" src="about:blank"></iframe>')
.appendTo("body");
        if (document.all.IframeReportImg.src != imgPathURL) {
            document.all.IframeReportImg.src = imgPathURL;
        }
        window.frames["IframeReportImg"].document.execCommand("SaveAs");

 

posted @ 2017-10-16 16:58  江湖丶丿新进程  阅读(130)  评论(0)    收藏  举报