夥伴匹配系統踩坑日記8 controller傳參

vast_joy發表於2024-08-25

夥伴匹配系統踩坑日記8 controller傳參

後端

引數對映

image-20240825110720296

在swagger裡傳空值,發現有問題

image-20240825110756974

在方法中加入@requestparam註解

image-20240825110829989

    @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

相關文章