swagger错误:Failed to execute 'fetch' on 'Window': Request with GET/HEAD method cannot have body

@ApiOperation(value = "下单列表")
@getMapping("list")
public Result selectFrontAgentOrderlist(@RequestBody FrontAgentOrderQuery frontAgentOrderQuery){
    return ResultUtil.success(orderService.selectFrontAgentOrderlist(initMpPage(),frontAgentOrderQuery));
}

@GetMapping请求的方法请求参数却写了个@RequestBody   将@GetMapping改成了@PostMapping 正常

原文地址:https://www.cnblogs.com/it66/p/12504408.html