js分片

作者: 冬天的_太阳 | 来源:发表于2020-05-18 14:15 被阅读0次
       this.sharedSize=1*1024*1024;//分片大小 1MB
    //查询api该文件上传剩余所需片
       let {fileSize}=await this.$networkHandler.sendRequest("CHECK_FILE_SLICES",{name:this.file.name}); ///  调用api获取已经上传的文件大小
       this.completedCount=fileSize;  /// 已经上传的文件大小
       
       if(this.completedCount==this.file.size)//this.file 是前端所要上传的文件   已经上传的文件大小== 需要上传的文件
         return alert("该文件已全部上传");
         
    //向上取整,计算出所需上传片数  (文件大小 - 已经上传的大小/ 分片的大小  )
       let num=Math.ceil((this.file.size-this.completedCount)/this.sharedSize);
    
       for(let i=0;i<num;i++){
         if(this.uploadFlag==2)
           return undefined;
          //  上传完成标志
           
         //计算本次上传文件起止位置
         let start = this.completedCount;/// 已经上传的大小
         let end=Math.min(this.file.size,start+this.sharedSize);/// 从数组中取一个数值,当是最后一个分片的数据< 一个分片的
         let length=end-start;/// 需要上传的文件大小。
         //构建Form表单提交
         let form=new FormData();
         form.append("data",this.file.slice(start,end));//切割文件  文件流可以用数组的方法去截取 
         form.append("name",this.file.name);//这里正确的姿势应该是传一些可以验证文件唯一性的标识,比如签名
         try{
           await this.$networkHandler.sendRequest("UPLOAD_BIG_FILE",form); /// 截取后的文件--请求接口
           this.completedCount+=length;/// 更新已经上传文件的大小。
           if(this.completedCount==this.file.size){
             //上传完毕
             this.clearData();
             this.completeFlag=true;
           }
    
         }catch (e){
           console.error(e);
           return alert("上传失败!");//上传失败需要终止循环
         }
       }
    
    

    相关文章

      网友评论

          本文标题:js分片

          本文链接:https://www.haomeiwen.com/subject/tdpuohtx.html