千家信息网

vue+element upload上传带参数的方法

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,今天小编给大家分享一下vue+element upload上传带参数的方法的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后
千家信息网最后更新 2025年01月19日vue+element upload上传带参数的方法

今天小编给大家分享一下vue+element upload上传带参数的方法的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

element upload上传带参数

保存
       选取文件            

data里面参数

uploadData:null,

methods里面

action(){       return this.portC+"uplodResultsScore"     },     //上传     submitUpload() {         this.$refs.upload.submit();      },      handleRemove(file, fileList) {        console.log(file, fileList);      },      handlePreview(file) {         console.log(file);      },      beforeUpload (file) {                        this.uploadData = {dstype:this.proType,name:this.mobanname,dsmark:this.value5,};             console.log(this.uploadData)            let promise = new Promise((resolve) => {                this.$nextTick(function () {                    resolve(true);                });            });            return promise; //通过返回一个promis对象解决     },     //上传成功钩子     successResave(response, file, fileList){           console.log(response)           if(response.code==10001){              alert("保存成功")                 this.proType="";               this.mobanname="";               this.value5="";               this.$router.push("/moban")           }     },    //失败钩子     error(response, file, fileList){           console.log(response)     },     //选择家化实效      selectType(val){         console.log(val)         if(val==1){             this.$router.push("/new")         }else{             this.$router.push("/new1")         }      },

效果图

element上传函数带参数,自定义传参

下面这是标签

可以看出来 :

http-request="(params) =>beforeMasterPictureUpload(params,'ruleForm',fileList0)"

http-request 传递参数的方法 是可以这样写的,其他方法一样,但是如果写错少些可能会导致覆盖原来的方法。

                                            

下面是JS 接受方法 同样 我们拿 http-request 这个方法做例子

beforeMasterPictureUpload(params, fromData, prop) {    console.log('----aaaa', this.fileList);    console.log('file', params, fromData, prop);}

大家可以输出看看结果 是否有拿到你上面传递过来的字符串或者是值

我将源码放上

HTML标签

                                            

JS语句

// 主图上传之前                beforeAvatarUpload(file) {                    console.log('主图上传之前:', file)                    const idJPG =                        file.type === "image/jpeg" || "image/gif" || "image/png" || "image/bmp";                    if (!idJPG) {                        this.$message.error(                            '123123'                        );                    }                    return idJPG;                },                // 图片触发                onChangeMaster(file, fileList, fromData, prop) {                    // fileList 当前上传框的数据                     switch (prop) {                        case 'fileList0':                            { this.hideUpload0 = fileList.length >= this.limitCount; }                            break;                        case 'fileList1':                            { this.hideUpload1 = fileList.length >= this.limitCount; }                            break;                        case 'fileList2':                            { this.hideUpload2 = fileList.length >= this.limitCount; }                            break;                        case 'fileList3':                            { this.hideUpload3 = fileList.length >= this.limitCount; }                            break;                        case 'fileList4':                            { this.hideUpload4 = fileList.length >= this.limitCount; }                            break;                        case 'fileList5':                            { this.hideUpload6 = fileList.length >= this.limitCount; }                            break;                        default:                            break;                    }                    console.log('判断一次', file, fileList, this.fileList0)                    if (this.inde > 0) {                        return                    } else {                        //let existFile = fileList.slice(0, fileList.length - 1).find(f => f.name === file.name)                        //if (existFile) {                           // this.inde++                          //  console.log(existFile)                          //  this.$message.error(                          //      '图片重复' + existFile.name                        //    );                        //    // fileList.pop()                     //   }                        this[prop] = fileList                    }                },                // 图片个数超出限制                OnExceed(file, fileList) {                    this.$message.error(                        '每个选项最多上传5张', "error"                    );                },                handleRemove(params, fileList, prop, item) {                    prop.forEach((obj, index) => {                        console.log(index, obj)                        if (params.uid == obj.uid) {                            prop.splice(index, 1)                        }                    })                    console.log('删除后的数组', prop);                    setTimeout(() => {                        switch (item) {                            case 'fileList0':                                { this.hideUpload0 = prop.length >= this.limitCount; }                                break;                            case 'fileList1':                                { this.hideUpload1 = prop.length >= this.limitCount; }                                break;                            case 'fileList2':                                { this.hideUpload2 = prop.length >= this.limitCount; }                                break;                            case 'fileList3':                                { this.hideUpload3 = prop.length >= this.limitCount; }                                break;                            case 'fileList4':                                { this.hideUpload4 = prop.length >= this.limitCount; }                                break;                            case 'fileList5':                                { this.hideUpload6 = prop.length >= this.limitCount; }                                break;                            default:                                break;                        }                        console.log(prop.length >= this.limitCount)                    }, 1000)                    // this.fileList = [];                    this.dialogImageUrl = '';                },                handlePictureCardPreview(file, fromData, prop) {                    console.log(file, fromData, prop)                    this.dialogImageUrl = file.url;                    this.dialogVisible = true;                },                beforeMasterPictureUpload(params, fromData, prop) {                    console.log('----aaaa', this.fileList);                    console.log('file', params, fromData, prop);                                    },

这是需求案列

以上就是"vue+element upload上传带参数的方法"这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注行业资讯频道。

方法 参数 知识 篇文章 图片 成功 内容 文件 标签 这是 钩子 不同 很大 个数 例子 函数 大部分 字符 字符串 实效 数据库的安全要保护哪些东西 数据库安全各自的含义是什么 生产安全数据库录入 数据库的安全性及管理 数据库安全策略包含哪些 海淀数据库安全审计系统 建立农村房屋安全信息数据库 易用的数据库客户端支持安全管理 连接数据库失败ssl安全错误 数据库的锁怎样保障安全 smtp 服务器下载 网络安全视频课程百度云 当前全球数据库技术发展趋势 服务器2012设置远程连接 警方开展网络安全周活动 数据库查询基本原理 正规网络安全运维 网络安全英语短文80词简单 数据库技术考试系统画关系图 有范互联网科技 苏州阿里云服务器现状 web程序发布到服务器的流程 集团公司网络安全管理规章制度 宇信易诚网络技术 服务器公网映射端口软件 石家庄软件开发工作 怎么给服务器绑定域名 网络安全法调取数据是多少条 荷兰服务器抗投诉 40台客户机网吧服务器配置 视频软件开发好找工作吗 进一步明确网络安全的重要性 远程管理服务器中的图片 软件开发时间分为几个阶段 幼儿园网络安全职责与要求 重庆科技大学城市学院互联网 sql数据库看会计科目 世界ol服务器消失怎么找回 相对突出的数据库水印溯源 lol服务器经常出现问题
0