Javascript Base64轉Blob


轉換方法

function dataURLtoFile(dataurl, filename) {
    var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1], bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n); while(n--){ u8arr[n] = bstr.charCodeAt(n); } var theBlob = new Blob([u8arr], {type: mime }); theBlob.lastModifiedDate =new Date(); theBlob.name = filename; return theBlob; }

圖片上傳

var images = new FormData();
images.append('images[]', dataURLtoFile(base64, filename), filename); $.ajax({ url: 'uploadImage', async: false, type: 'post', data: images, processData: false, contentType: false, success: function(data){ //TODO  } });

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM