溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue如何實現(xiàn)實時上傳文件進度條

發(fā)布時間:2022-03-30 12:21:10 來源:億速云 閱讀:2049 作者:小新 欄目:開發(fā)技術

這篇文章主要介紹了vue如何實現(xiàn)實時上傳文件進度條,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

具體內容如下

vue如何實現(xiàn)實時上傳文件進度條

//上傳文件組件
<el-upload
        action
        :show-file-list="false"
        :before-upload="uploadFile"
>
      <el-button type="primary" :disabled="progressFlag">上傳數(shù)據(jù)</el-button>
</el-upload>
//進度條組件
<div :class="progressFlag?'progress':'progress1'">
        <el-progress
                id="progress"
                 type="circle"
                 :percentage="percent"
                 :stroke-width="8"
                  :width="100"
                  :show-text="true"
                  stroke-linecap="round"
                  :format="progressFormat"
        ></el-progress>
                                
</div>
data() {
    return {
        percent:0,
        progressFlag:false,
        deg:135,
        status:this.percent<100?"":"success",//進度條組件加上狀態(tài)后不顯示文字
        color:[
            {color:"#fdfdfd",percentage:99},
            {color:"#ccccc",percentage:100},
        ]
    }
}
methods:{

async uploadFile(file){
        //:on-progress="uploadFile"上傳時會多次調用,由于是本地,間隔較大
        let reg = /(?<=\.)[a-z]+$/g
        let fileType = file.name.match(reg)+""
        let typeArr = ["xls","xlsx","csv"]
        if(!typeArr.includes(fileType)){
            this.$message.warning("上傳文件格式錯誤!")
            return 
        }
        let formData = new FormData()
        formData.append('file',file)
        // realtimeUploadLocal({
        //     file:formData,
        //     uid:this.$store.state.userInfo.user.uid,
        // })
        this.progressFlag = true
        await realtimeUpload(formData,this).then((res)=>{
            if(res.code == "0"){
                this.$message.success(res.data)
            }else{
                this.$message.warning(res.data)
            }
        })
        setTimeout(()=>{
            this.progressFlag = false
            // this.rotateFn(0)
            this.percent = 0
        },1000)
    },

progressFormat(percentage){
        return percentage<100?"已上傳("+percentage+"%)":"上傳完成"
 }

}
<style scoped lang="less">
.progress1{ display:none;}
.progress{
        display: flex;
        width: 80px;
        height: 80px;
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translate(-50%, 0);
        background-color: transparent;
}

</style>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“vue如何實現(xiàn)實時上傳文件進度條”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

vue
AI