function convertBase64UrlToBlob(urlData) {
  var arr = dataurl.split(','),//去掉url的头,并转换为byte
  type = arr[0].match(/:(.*?);/)[1],
  fileExt = mime.split('/')[1],
  bstr = atob(arr[1]),
  n = bstr.length,
  u8arr = new Uint8Array(n);
  while(n--) {
    u8arr[n] = bstr.charCodeAt(n);
  }
  return new Blob([ab], { type: type}); 
}
  function convertBase64UrlToFile(urlData) {
	var arr = dataurl.split(','),
	type= arr[0].match(/:(.*?);/)[1],
	fileExt = mime.split('/')[1],
	bstr = atob(arr[1]),
	n = bstr.length,
	u8arr = new Uint8Array(n);
	while(n--) {
		u8arr[n] = bstr.charCodeAt(n);
	}
	return new File([u8arr],"fileName."+fileExt,{type:type});
  }

  

posted on 2017-06-23 10:48  前端小透明  阅读(3650)  评论(0)    收藏  举报