Post selects raw and passes json data in the following format:
[
30101.30103.30104
]
Copy the code
Springboot’s controller receives the following code:
public Object getModelByIds(@RequestBody List<Integer> modelIds){
return modelService.getModelByIds(modelIds);
}
Copy the code
@RequestBody
Copy the code
That’s the point