文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

js如何实现移动端图片压缩上传功能

2024-04-02 19:55

关注

这篇文章给大家分享的是有关js如何实现移动端图片压缩上传功能的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

移动端图片压缩上传功能如何实现?

做移动端开发的时候,form里面的file后台经常获取不到,用foemdata也拿不到

找到了一个formdata的脚本

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
 <title>移动端图片压缩上传demo</title>
 <style>
  *{margin: 0;padding: 0;}
  li{list-style-type: none;}
  a,input{outline: none;-webkit-tap-highlight-color:rgba(0,0,0,0);}
  #choose{display: none;}
  canvas{width: 100%;border: 1px solid #000000;}
  #upload{display: block;margin: 10px;height: 60px;text-align: center;line-height: 60px;border: 1px solid;border-radius: 5px;cursor: pointer;}
  .touch{background-color: #ddd;}
  .img-list{margin: 10px 5px;}
  .img-list li{position: relative;display: inline-block;width: 100px;height: 100px;margin: 5px 5px 20px 5px;border: 1px solid rgb(100,149,198);background: #fff no-repeat center;background-size: cover;}
  .progress{position: absolute;width: 100%;height: 20px;line-height: 20px;bottom: 0;left: 0;background-color:rgba(100,149,198,.5);}
  .progress span{display: block;width: 0;height: 100%;background-color:rgb(100,149,198);text-align: center;color: #FFF;font-size: 13px;}
  .size{position: absolute;width: 100%;height: 15px;line-height: 15px;bottom: -18px;text-align: center;font-size: 13px;color: #666;}
  .tips{display: block;text-align:center;font-size: 13px;margin: 10px;color: #999;}
  .pic-list{margin: 10px;line-height: 18px;font-size: 13px;}
  .pic-list a{display: block;margin: 10px 0;}
  .pic-list a img{vertical-align: middle;max-width: 30px;max-height: 30px;margin: -4px 0 0 10px;}
 </style>
</head>
<body>
<input type="file" id="choose" accept="image
 function getBlob(buffer, format) {
  try {
   return new Blob(buffer, {type: format});
  } catch (e) {
   var bb = new (window.BlobBuilder || window.WebKitBlobBuilder || window.MSBlobBuilder);
   buffer.forEach(function(buf) {
    bb.append(buf);
   });
   return bb.getBlob(format);
  }
 }
 
 function getFormData() {
  var isNeedShim = ~navigator.userAgent.indexOf('Android')
    && ~navigator.vendor.indexOf('Google')
    && !~navigator.userAgent.indexOf('Chrome')
    && navigator.userAgent.match(/AppleWebKit\/(\d+)/).pop() <= 534;
  return isNeedShim ? new FormDataShim() : new FormData()
 }
 
 function FormDataShim() {
  console.warn('using formdata shim');
  var o = this,
    parts = [],
    boundary = Array(21).join('-') + (+new Date() * (1e16 * Math.random())).toString(36),
    oldSend = XMLHttpRequest.prototype.send;
  this.append = function(name, value, filename) {
   parts.push('--' + boundary + '\r\nContent-Disposition: form-data; name="' + name + '"');
   if (value instanceof Blob) {
    parts.push('; filename="' + (filename || 'blob') + '"\r\nContent-Type: ' + value.type + '\r\n\r\n');
    parts.push(value);
   }
   else {
    parts.push('\r\n\r\n' + value);
   }
   parts.push('\r\n');
  };
  // Override XHR send()
  XMLHttpRequest.prototype.send = function(val) {
   var fr,
     data,
     oXHR = this;
   if (val === o) {
    // Append the final boundary string
    parts.push('--' + boundary + '--\r\n');
    // Create the blob
    data = getBlob(parts);
    // Set up and read the blob into an array to be sent
    fr = new FileReader();
    fr.onload = function() {
     oldSend.call(oXHR, fr.result);
    };
    fr.onerror = function(err) {
     throw err;
    };
    fr.readAsArrayBuffer(data);
    // Set the multipart content type and boudary
    this.setRequestHeader('Content-Type', 'multipart/form-data; boundary=' + boundary);
    XMLHttpRequest.prototype.send = oldSend;
   }
   else {
    oldSend.call(this, val);
   }
  };
 }
</script>
</body>
</html>

感谢各位的阅读!关于“js如何实现移动端图片压缩上传功能”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯