当前位置:   article > 正文

element不上传文件,解决点击提交无法触发 http-request_element 上传在移动端调用不到请求

element 上传在移动端调用不到请求
 
        <el-upload
            ref="upload"
            :headers="myHeaders"
            class="avatar-uploader avatar-uploaderOne"
            action="http://47.93.4.35:9090/shop/upload"
            :http-request="uploadImg"
            :show-file-list="false"
            :on-preview="handlePreview"
            :on-success="handleAvatarSuccess"
            :onSuccess="uploadSuccess"
            :on-change="handleChange"
            :before-upload="beforeAvatarUpload"
            :before-remove="beforeRemove"
            :auto-upload="false" //因为这里设置了自动上传为false
            >
            <img v-if="true" :src="imageUrl" class="avatar">
            <i v-else class="el-icon-plus avatar-uploader-icon" style="margin-left: -20px"></i>
          </el-upload>        
          
          
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

:auto-upload="false" 这里设置了false 不会自动上传,自然无法触发:http-request绑定的方法

解决方法::auto-upload="true" 或者直接去掉,默认就是为true

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/172613
推荐阅读
相关标签
  

闽ICP备14008679号