美文网首页
Element-UI 使用问题汇总

Element-UI 使用问题汇总

作者: 1baibai | 来源:发表于2021-09-15 13:47 被阅读0次

    1. el-upload相关设置

    <el-upload
         class="avatar-uploader"      
         action="/ajax/upload_files"          //上传接口
         name="pic_file"                      //接收字段
         :headers= headers                   //请求头设置
         :show-file-list="false"
         :on-success="handleAvatarSuccess"      //成功回调
         :before-upload="beforeAvatarUpload">
         <img v-if="imageUrl" :src="imageUrl" class="avatar">
         <i v-else class="el-icon-plus avatar-uploader-icon"></i>
    </el-upload>
    

    注意请求头设置
    headers:{'ContentType' : 'multipart/form-data'}

    相关文章

      网友评论

          本文标题:Element-UI 使用问题汇总

          本文链接:https://www.haomeiwen.com/subject/psikgltx.html