elemnet-ui图片上传el-upload的后端springboot实现

使用element-ui的图片上传组件实现图片上传,并在前台显示

实现思路:

  • 图片上传到后端,后端接收图片,保存到本地,返回本地的存储路径
  • 前端根据路径做图片回显,使用springboot配置资源映射规则

步骤:

  1. 前端el-upload组件
    直接在element的官网找到upload组件
    在这里插入图片描述
<el-upload
  class="avatar-uploader"
  action="https://localhost:9202/file/addFile"
  :show-file-list="false"
  :on-success="onSuccess"
  :before-upload="beforeUpload">
  <img v-if="imageUrl" :src="imageUrl" class="avatar">
  <i v-else class="el-icon-plus avatar-uploader-icon"></i>
</el-upload>
<script>
export default{
	data() {
		return{
			file_baseApi: 'http://localhost:9202/file' 
			imageUrl: ''  // 图片url,在上面双向绑定了
		}
	}
	method:{
		// 文件上传成功后回调函数
		onSuccess(response){
			// response 就是图片上传成功后返回的信息,名字可以任意,例如res,还有其他参数,具体使用可以查阅element的官网el-upload组件的介绍
			this.imageUrl = this.file_api + response.data.fileUrl
		}
	}
}
</script>

其中:

  • :on-success绑定的是图片上传成功后的事件,
  • :before-upload绑定的是图片上传前调用的事件,可以进行一下图片大小判断等。这里就直接用组件中的回调函数了,是判断了一下文件类型和大小
  • action写上传后端的接口,例如:我这里直接写死到这里了,也可以用:action进行双向绑定,调取data中定义的数据
  1. 后端接口实现
    后端代码
    1)controller层
@ApiOperation(value = "上传文件,添加到本地目录")
@PostMapping("/file/addFile")
public Result addFile(MultipartFile file){
    Map<String,Object> map = fileService.addFile(file);
    return Result.ok().data(map);
}

2)service层(具体文件保存在这里实现)

@Override
public Map<String, Object> addFile(MultipartFile file) {

    FileEntity fileEntity = new FileEntity();
    //把文件保存的方法抽离出来了
    Map<String, Object> map = uploadFile(file);
    String fileOriginalName = file.getOriginalFilename();
    String fileName = (String) map.get("fileName");
    String fileUrl = (String) map.get("fileUrl");
    Long fileSize = file.getSize();

    fileEntity.setFileOriginalName(fileOriginalName);
    fileEntity.setFileName(fileName);
    fileEntity.setFileUrl(fileUrl);
    fileEntity.setFileSize(fileSize);

    baseMapper.insert(fileEntity);
    map.put("fileId",fileEntity.getId());
    return map;
}

// 文件上传,保存到本地,如果需要直接修改本方法进行文件上传
private Map<String,Object> uploadFile(MultipartFile file){
	// 这个map用于返回imageUrl,imageId之类的数据
    Map<String,Object> map = new HashMap<>();
    try {
        // 1)设置文件的目录
        //按照月份进行分类:
        Calendar calendar = Calendar.getInstance();
        calendar.get(Calendar.YEAR);
        String yearMonth = calendar.get(Calendar.YEAR) + "年" +(calendar.get(Calendar.MONTH) + 1)+"月";
        String filePath = "E:\\图片保存\\upload\\"+ yearMonth ; //项目路径+年月份

		// 创建文件目录
        File realPath = new File(filePath);  //上传文件保存地址:realPath = "E:\\图片保存\\upload\\2022年5月"
        if (!realPath.exists()){
            boolean mkdirs = realPath.mkdirs();//创建文件目录,可以创建多层目录
        }
     
        //2)设置文件名字
        String fileRealName=file.getOriginalFilename();
        String suffix = fileRealName.substring(fileRealName.lastIndexOf(".") + 1);  //后缀  jpg  png
        //解决文件名字问题:使用uuid的方式;
        String fileName = "file-"+ UUID.randomUUID().toString().replaceAll("-", "") + "." + suffix;

        //3)进行文件保存,通过CommonsMultipartFile的方法直接写文件
        file.transferTo(new File(realPath +"/"+ fileName));

		//4)返回图片的名字,url,如果只是保存文件,下面的语句可以不写
        String fileUrl = "/upload/" + yearMonth + "/" +fileName;
        //前端的FILE_API为http://localhost:9222/file
        map.put("fileName",fileName);
        map.put("fileUrl",fileUrl);  //传到前端的url,例如: /upload/2022年5月/xxx.jpg

    } catch (IOException e) {
        e.printStackTrace();
    }
    return map;
}
  1. 后端设置资源映射
    后端的资源映射规则配置:创建一个类实现WebMvcConfigurer
@Configuration
public class MyMvcConfig implements WebMvcConfigurer {

    @Value("${file.uploadPath}")
    private String uploadPath;

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        //添加资源映射规则,默认的前缀是:http://localhost:port
        registry.addResourceHandler("/file/upload/**")
                .addResourceLocations("file:E:/图片保存/upload/" );
        //这里就相等于设,http://localhost:port/file/upload/**
        // ** 默认掉用本地的 E:/图片保存/upload/**
    }
}

即调用http://loaclhost:9202/upload/2022年5月/xxx.jpg
显示浏览器找的资源是file:///E:/图片保存/upload/xxx.jpg
在这里插入图片描述
在这里插入图片描述

  1. 前端回显
    传到前端的路径为:/upload/2022年5月/xxx.jpg
    前端拼凑的完整imageUrl路径为http://loaclhost:9202/upload/2022年5月/xxx.jpg
    即可回显
  • 2
    点赞
  • 51
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值