1)使用 XMLHttpRequest 對象獲取圖片url的Blob值app
//獲取圖片的Blob值 function getImageBlob(url, cb) { var xhr = new XMLHttpRequest(); xhr.open("get", url, true); xhr.responseType = "blob"; xhr.onload = function() { if (this.status == 200) { if(cb) cb(this.response); } }; xhr.send(); }
注意這裏的XMLHttpRequest必須使用異步模式,同步模式不能設置 responseType = "blob"異步
2)使用 FileReader 對象獲取圖片 Blob 對象的 data 數據this
function preView(url){ let reader = new FileReader(); getImageBlob( url , function(blob){ reader.readAsDataURL(blob); }); reader.onload = function(e) { var img = document.createElement("img"); img.src = e.target.result; document.body.appendChild(img); } }
完。url