• vue上传


    1             <el-table-column label="头像">
    2                 <template slot-scope="scope">
    3                     <!-- <el-avatar :size="60" :src="scope.row.headerImg"> -->
    4                     <img :src="scope.row.headerImg" height="50px;" />
    5                     </el-avatar>
    6                 </template>
    7             </el-table-column>
     1 <el-form-item label="学生头像">
     2               <el-upload
     3                 class="avatar-uploader"
     4                 action="http://localhost:8090/file/upload"
     5                 :show-file-list="false"
     6                 :on-success="handleAvatarSuccess"
     7                 :before-upload="beforeAvatarUpload">
     8                 <img v-if="imageUrl" :src="imageUrl" class="avatar">
     9                 <i v-else class="el-icon-plus avatar-uploader-icon"></i>
    10               </el-upload>
    11           </el-form-item>
     1 data() {
     2             return {
     3                 form: {
     4                     hobbyIdList: [],
     5                     headerImg:null
     6                 },
     7                 classesList: [],
     8                 hobbyList: [],
     9                 proviceList: [],
    10                 cityList: [],
    11                 areaList: [],
    12                 imageUrl: null
    13             }
    14         },
    15         methods: {
    16             //图片上传成功回调
    17                         handleAvatarSuccess(res, file){
    18                             console.log(res,file)
    19                             //图片显示
    20                             this.imageUrl = res.imgUrl;
    21                             //保存图片,给form.headerImg赋值
    22                             this.form.headerImg=res.imgUrl;
    23                         },
    24                         //图片上传之前,是调后台接口之前
    25                         beforeAvatarUpload(file){
    26                             const isJPG = file.type === 'image/jpeg';
    27                             const isLt2M = file.size / 1024 / 1024 < 2;
    28                     
    29                             if (!isJPG) {
    30                               this.$message.error('上传头像图片只能是 JPG 格式!');
    31                             }
    32                             if (!isLt2M) {
    33                               this.$message.error('上传头像图片大小不能超过 2MB!');
    34                             }
    35                             console.log(11111111)
    36                             return isJPG && isLt2M;
    37                         },
    38             onSubmit() {
    39                 console.log(this.form);
    40                 this.axios.post("http://localhost:8090/student/save", this.form).then(res => {
    41                     console.log(res);
    42                     //如果成功跳转到列表
    43                     this.$router.push("/student")
    44                 })
    45 
    46 
    47             },
  • 相关阅读:
    将oh-my-zsh编程真正的my zsh
    Linux Shell 程序调试
    (64位)本体学习程序(ontoEnrich)系统配置说明文档
    Shell编程——vim常用命令
    Morris Traversal 方法遍历二叉树(非递归、不用栈,O(1)空间)
    206. Reverse Linked List
    欧几里德算法求解最大公约数
    25. Reverse Nodes in k-Group
    86. Partition List
    24. Swap Nodes in Pairs
  • 原文地址:https://www.cnblogs.com/tang0125/p/13080410.html
Copyright © 2020-2023  润新知