需求:后端需要同时接收文件及对象,或者需要接收多个对象
实现方法:后端使用@RequestPart接收
Controller
@Slf4j
@RequestMapping("/postman")
@RestController
public class PostmanParam {
@PostMapping(value = "twoGirlfriendsAndFile")
public String postman4(@RequestPart("file") MultipartFile file,
@RequestPart("child1") Child child1,
@RequestPart("child2")Child child2){
if(file != null){
log.error("接收到文件");
}
return child1.toString()+child2.toString();
}
}
Postman设置
文章来源:https://www.toymoban.com/news/detail-606598.html
文章来源地址https://www.toymoban.com/news/detail-606598.html
到了这里,关于Postman传多个参数入参的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!