做个记录备忘
以Postman为例,前端发送请求时,使用Post请求,在Header中添加enctype = multipart/form-data(如果不能成功,可以把Header中的Content-Type去掉试试)
入参使用body中使用表单提交类似,类型选择file:
后端接收的话,注意方法的入参怎么接:
public CommonResult<List<BaseFile>> upload(@RequestParam("files") MultipartFile[] files,@RequestParam String type){
try{
处理逻辑
}catch (Exception e){
}
}