夥伴匹配系統踩坑日記8 controller傳參
後端
引數對映
在swagger裡傳空值,發現有問題
在方法中加入@requestparam註解
@GetMapping("search/tags")
public BaseResponse<List<User>> searchusersByTags(@RequestParam List<String> tagNameList){
if(CollectionUtils.isEmpty(tagNameList)){
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
List<User> userList=userService.searchUsersByTags(tagNameList);
return ResultUtils.success(userList);
}
關於RequestParam註解,見https://blog.csdn.net/qq_61668277/article/details/140857451