前端进阶:原生JavaScript实现具有进度监听的文件上传预览组件

本文主要介绍如何使用原生js,通过面向对象的方式实现一个文件上传预览的组件,该组件利用FileReader来实现文件在前端的解析,预览,读取进度等功能,并对外暴露相应api来实现用户自定义的需求,比如文件上传,进度监听,自定义样式,读取成功回调等。

创新互联是一家专注于成都网站设计、网站制作与策划设计,嘉善网站建设哪家好?创新互联做网站,专注于网站建设十余年,网设计领域的专业建站公司;建站业务涵盖:嘉善等地区。嘉善做网站价格咨询:028-86922220

组件设计架构如下:

涉及的核心知识点如下:

  1. 闭包:减少变量污染,缩短变量查找范围
  2. 自执行函数
  3. file API:对文件进行读取,解析,监控文件事件
  4. DocumentFragment API:主要用来优化dom操作
  5. minix :用来实现对象混合
  6. 正则表达式:匹配文件类型
  7. class :类组件

github地址

用原生js实现具有进度监听的文件上传预览组件

Demo演示

使用:

 
 
 
 
  • css代码:

     
     
     
     
    1. .xj-wrap {
    2.             position: relative;
    3.             display: inline-block;
    4.             border: 1px dashed #888;
    5.             width: 200px;
    6.             height: 200px;
    7.             border-radius: 6px;
    8.             overflow: hidden;
    9.         }
    10.         .xj-wrap::before {
    11.             content: '+';
    12.             font-size: 36px;
    13.             position: absolute;
    14.             transform: translate(-50%, -50%);
    15.             left: 50%;
    16.             top: 50%;
    17.             color: #ccc;
    18.         }
    19.         .xj-wrap .xj-pre-img {
    20.             width: 100%;
    21.             height: 100%;
    22.             background-repeat: no-repeat;
    23.             background-position: center center;
    24.             background-size: 100%;
    25.         }
    26.         .xj-file {
    27.             position: absolute;
    28.             left: 0;
    29.             right: 0;
    30.             bottom: 0;
    31.             top: 0;
    32.             opacity: 0;
    33.             cursor: pointer;
    34.         }

    js代码:

     
     
     
     
    1. (function(win, doc){
    2.     function xjFile(opt) {
    3.         var defaultOption = {
    4.             el: doc.body,
    5.             accept: '*', // 格式按照'image/jpg,image/gif'传
    6.             clsName: 'xj-wrap',
    7.             beforeUpload: function(e) { console.log(e) },
    8.             onProgress: function(e) { console.log(e) },
    9.             onLoad: function(e) { console.log(e) },
    10.             onError: function(e) { console.error('文件读取错误', e) }
    11.         };
    12.         // 获取dom
    13.         if(opt.el) {
    14.             opt.el = typeof opt.el === 'object' ? opt.el : document.querySelector(opt.el);
    15.         }
    16.         this.opt = minix(defaultOption, opt);
    17.         this.value = '';
    18.         this.init();
    19.     }
    20.     xjFile.prototype.init = function() {
    21.         this.render();
    22.         this.watch();
    23.     }
    24.     xjFile.prototype.render = function() {
    25.         var fragment = document.createDocumentFragment(),
    26.             file = document.createElement('input'),
    27.             imgBox = document.createElement('div');
    28.         file.type = 'file';
    29.         file.accept = this.opt.accept || '*';
    30.         file.className = 'xj-file';
    31.         imgBox.className = 'xj-pre-img';
    32.         // 插入fragment
    33.         fragment.appendChild(file);
    34.         fragment.appendChild(imgBox);
    35.         // 给包裹组件设置class
    36.         this.opt.el.className = this.opt.clsName;
    37.         this.opt.el.appendChild(fragment);
    38.     }
    39.     xjFile.prototype.watch = function() {
    40.         var ipt = this.opt.el.querySelector('.xj-file');
    41.         var _this = this;
    42.         ipt.addEventListener('change', (e) => {
    43.             var file = ipt.files[0];
    44.             // 给组件赋值
    45.             _this.value = file;
    46.             var fileReader = new FileReader();
    47.             // 读取文件开始时触发
    48.             fileReader.onloadstart = function(e) {
    49.                 if(_this.opt.accept !== '*' && _this.opt.accept.indexOf(file.type.toLowerCase()) === -1) {
    50.                     fileReader.abort();
    51.                     _this.opt.beforeUpload(file, e);
    52.                     console.error('文件格式有误', file.type.toLowerCase());
    53.                 }
    54.             }
    55.             // 读取完成触发的事件
    56.             fileReader.onload = (e) => {
    57.                 var imgBox = this.opt.el.querySelector('.xj-pre-img');
    58.                 if(isImage(file.type)) {
    59.                     imgBox.innerHTML = '';
    60.                     imgBox.style.backgroundImage = 'url(' + fileReader.result + ')';
    61.                 } else {
    62.                     imgBox.innerHTML = fileReader.result;
    63.                 }
    64.                 
    65.                 imgBox.title = file.name;
    66.                 this.opt.onLoad(e);
    67.             }
    68.             // 文件读取出错事件
    69.             fileReader.onerror = (e) => {
    70.                 this.opt.onError(e);
    71.             }
    72.             // 文件读取进度事件
    73.             fileReader.onprogress = (e) => {
    74.                 this.opt.onProgress(e);
    75.             }
    76.             isImage(file.type) ? fileReader.readAsDataURL(file) : fileReader.readAsText(file);
    77.             
    78.         }, false);
    79.     }
    80.     // 清除ipt和组件的值,支持链式调用
    81.     xjFile.prototype.clearFile = function() {
    82.         this.opt.el.querySelector('.xj-file').value = '';
    83.         this.value = '';
    84.         return this
    85.     }
    86.     // 简单对象混合
    87.     function minix(source, target) {
    88.         for(var key in target) {
    89.             source[key] = target[key];
    90.         }
    91.         return source
    92.     }
    93.     // 检测图片类型
    94.     function isImage(type) {
    95.         var reg = /(image\/jpeg|image\/jpg|image\/gif|image\/png)/gi;
    96.         return reg.test(type)
    97.     }
    98.     // 将方法挂载到window上
    99.     win.xjFile = xjFile;
    100. })(window, document);

    class版(后期规划)

    class版的也很简单,大致框架如下,感兴趣的朋友可以实现一下呦~

     
     
     
     
    1. class XjFile {
    2.     constructor(opt) {
    3.     }
    4.     init() {
    5.     }
    6.     watch() {
    7.     }
    8.     render() {
    9.     }
    10.     clearFile() {
    11.     }
    12.     minix(source, target) {
    13.         
    14.     }
    15.     isImage(type) {
    16.         
    17.     }
    18. }

    总结

    该组件仍有需要完善的地方,在后期使用中,会慢慢更新,优化,欢迎大家提出宝贵的建议。

    分享题目:前端进阶:原生JavaScript实现具有进度监听的文件上传预览组件
    分享URL:http://www.mswzjz.cn/qtweb/news8/510608.html

    攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

    广告

    声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能

    贝锐智能技术为您推荐以下文章

    服务器托管知识

    分类信息网站