下载图片(vue 下载图片)

蹲街弑〆低调 提交于 2020-01-14 19:25:56
downloadImg(){
        const url = this.imgUrl
        // window.open(_this.detail.imgUrl)
        let xmlhttp=new XMLHttpRequest();
        xmlhttp.open("GET",url,true);
        xmlhttp.responseType = "blob";
        xmlhttp.onload = function(){
          if (this.status == 200) {
            const blob = this.response;
            const link = document.createElement('a');
            link.href = window.URL.createObjectURL(blob);
            link.download = url.substring(url.lastIndexOf("/")+1, url.length);

            //此写法兼容可火狐浏览器
            document.body.appendChild(link);

            const evt = document.createEvent("MouseEvents");
            evt.initEvent("click", false, false);
            link.dispatchEvent(evt);
            window.URL.revokeObjectURL(link.href)
            document.body.removeChild(link);
          };
        }

        xmlhttp.send();
      },

  

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!