Failed to execute fetch on Window Request with GET or HEAD method cannot have body

GET 格式

@BusinessLog(action = "detail", actionDetail = "詳情查詢", actionMessageId = "detail")
@ApiOperation(value = "詳情查詢", notes = "詳情查詢", httpMethod = "GET")
@GetMapping(path = "/detail")
public ApiResponse detail(String eventId) {
	return testService.detail(eventId);
}

POST 格式

@BusinessLog(action = "detail", actionDetail = "詳情查詢", actionMessageId = "detail")
@ApiOperation(value = "詳情查詢", notes = "詳情查詢", httpMethod = "POST")
@PostMapping("/detail")
public ApiResponse detail(@ApiParam(value = "詳情查詢請求參數") @RequestBody DetailReq detailReq) {
	return testService.detail(detailReq);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章