我是靠谱客的博主 阳光星月,最近开发中收集的这篇文章主要介绍element 的el-upload如何传递当前索引(:on-change事件),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<el-upload
                class="upload-demo avatar-uploader"
                action="#"
                enctype="multipart/form-data"
                :show-file-list="false"
                :http-request="uploadImg"
                name="file"
                :on-change="(file, fileList) => {handleChange(file, fileList, i)}"
              >

methods:{
	    handleChange (file, fileList, i) {
      this.imgid = i
    },
}

    async uploadImg (option) {
      let { file } = option // 对象结构file
      let isLt2M = file.size / 1024 / 1024 < 1
      if (!isLt2M) {
        this.$message({
          message: '上传文件大小不能超过1MB!',
          type: 'warning'
        })
        return
      }
      let params = new FormData()
      params.append('file', file)
	  let res = await this.$API.uploadProImg(params)
      if (res.code === 200) {
        // 解决上传图片重复的问题
        this.addHotActForm.proIntroArr[this.imgid].imageUrl = res.msg
        this.$message({
          message: '文件上传成功!',
          type: 'success',
          duration: 800
        })
      } else {
        this.$message({
          message: '文件上传失败!',
          type: 'error',
          duration: 800
        })
      }
    },

最后

以上就是阳光星月为你收集整理的element 的el-upload如何传递当前索引(:on-change事件)的全部内容,希望文章能够帮你解决element 的el-upload如何传递当前索引(:on-change事件)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部