当前位置: 首页 > 工具软件 > DropzoneJS > 使用案例 >

dropzonejs vue 使用_DropzoneJS 上传下载

韩季
2023-12-01

下载

使用手册

aa.html

UploadiFive Test
aaa

$(function () {

var myDropzone = new Dropzone("div#myId", { url: "http://localhost:8010/thymeleaf/uploadImage"});

myDropzone.on('success', function (files, response) {

//文件上传成功之后的操作

alert(response.newfile);

});

});

java

@Controller

@RequestMapping("/thymeleaf")

public class ThymeleafController {

@RequestMapping("uploadImage")

@ResponseBody

public Map upload(MultipartFile file){

String fileName = file.getOriginalFilename();

System.out.println(fileName);

Map infoMap = new HashMap();

infoMap.put("newfile", "" + fileName);

return infoMap;

}

}

 类似资料: