应用 springboot+axios+element-ui实现文件上传

springboot做为后台服务器
vue+element-ui做为前端
axios实现数据交互
实质原理利用了js中的FormData的API,参照了springboot 文件上传的思路

1.springboot后台程序

1.1 application.properties

设置单个文件限制为1M,同时上传限制10MB

server.port=8088
server.servlet.context-path=/neu_his
spring.servlet.multipart.max-file-size=1MB
spring.servlet.multipart.max-request-size=10MB
1.2 处理器程序
@RestController
@RequestMapping("/upload")
public class FileUploadHandler {
    
    @RequestMapping("/photos")
    public List uploadMutipartFile(MultipartFile[] photos, HttpServletRequest request) throws Exception {
        List ps = new ArrayList();
        if(photos == null) {
            ps.add("no files");
            return ps;
        }
        for(MultipartFile f : photos) {
            String old_name = f.getOriginalFilename(); //原始文件名
            String ext_name = old_name.substring(old_name.lastIndexOf(".")); //扩展名
            String new_name = UUID.randomUUID().toString()+ext_name; //利用UUID生成新文件名
            String path = request.getRealPath("/upload/photos"); //上传位置:工程/static/upload/photos
            File fx = new File(path);
            if(!fx.exists()) {
                fx.mkdirs();
            }
            File n = new File(fx, new_name);
            f.transferTo(n);
            ps.add(n.getPath());
        }
        return ps;
    }
}

2.element-ui项目

已经通过npm安装了axios和element-ui环境并做好相应配置,过程参照前面的文章

2.1 设置跨域支持

webpack.config.js中 devServer节点追加配置,
target:springboot服务器url
changeOrigin: true表示支持跨域访问
pathRewrite:可以理解为对tatget进行路径映射

'/neu_his/': {
        target: 'http://localhost:8088/neu_his',
        changeOrigin: true,
        pathRewrite: {
          '^/neu_his': ''
        }
}
2.2 vue核心代码

关于element-ui上传组件的官方API:https://element.eleme.cn/#/zh-CN/component/upload
action="" 文件上传位置,异步提交时不宜填写
:auto-upload="false" 设置手动提交
:limit="5" 文件个数限制
:on-preview="handlePictureCardPreview" 点击文件列表中已上传的文件时的钩子
:on-remove="handleRemove" 文件列表移除文件时的钩子
:on-change="fileChange" 文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用
:multiple="true" 是否支持多文件上传
:file-list="fileList" 绑定的数据






你可能感兴趣的:(应用 springboot+axios+element-ui实现文件上传)