上传文件,页面loading显示文件上传进度

本文介绍了在项目开发中,如何通过在弹窗上传文件时添加蒙层并实时显示上传进度,防止用户操作中断上传,以及使用axios和自定义函数实现文件上传的详细步骤。
摘要由CSDN通过智能技术生成

做项目时,弹窗上传文件时,上传动作无法停止,需要加一个蒙层,阻止上传文件过程中的用户操作,并显示文件上传进度,效果如图。

效果图

页面上传文件函数

/*
 * 上传文件函数
 */
uploadFile(){
    let config = {
        onUploadProgress: progressEvent => {
            let percent = (progressEvent.loaded / progressEvent.total * 100 | 0) + '%'
            //实时设置loading显示的文件上传进度
            this.waiting.setText('文件上传中,' + percent + '...');
        }
    }
    api.file.upload(file, config).then(res => {
        this.waiting.close();
    })
}

/**
 * 等待效果
 */
showLoading() {
    this.waiting = this.$loading({
        lock: true,
        text: '',
        spinner: 'el-icon-loading',
        background: 'rgba(255,255,255,0.8)'
    })
}

api文件file.js

upload(file, config) {
    return axios.post('/xxx/yyy', file, config)
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值