JavaScript,ajax与springboot之间的传参方式

Springboot:
@PostMapping("/mDelTest")
public String mDelTest (@RequestBody List<String> params)

对应的Ajax:
check_val=[];
$.ajax({
    "type" : "post",
    "async" : false,
    "url" : url,
  });