【bootstrap】bootstrap上传文件组件

引入相关bootstrap文件链接















编写前台代码


<#include "../common/header.ftl">


<#include "../common/nav.ftl"> <#--上传文件区域-->

后台接收图片,并存入本地

@PostMapping("/uploadImages")
@ResponseBody
public String uploadImages(HttpServletRequest request,MultipartFile file){
    try{
        String filename = file.getOriginalFilename();
        //上传的路径
        String path = "d:\\upload";
        filename = changeName(filename);
        String rappendix = "upload/" + filename;
        filename = path + "\\" + filename;
        File file1 = new File(filename);
        file.transferTo(file1);
        String str = "{\"src\":\"" + rappendix + "\"}";
        return str;
    }catch (Exception e){
        throw new AuthorizationException("上传文件失败");
    }
}

效果如下:

选中两个文件

【bootstrap】bootstrap上传文件组件_第1张图片

 

【bootstrap】bootstrap上传文件组件_第2张图片

【bootstrap】bootstrap上传文件组件_第3张图片

 

 

 

你可能感兴趣的:(⑤前端,------,bootstrap,前端)