是否有任何解决方案可以从Angular 4
PageRequest
对象传递到REST
控制器的参数?请注意,我并不是指使用@PathVariable
。
下面有一个controller
在arg中有一个PageRequest
- 所以现在我想知道如何从Angular 4
创建该对象?
@RequestMapping(value = "/all", method = RequestMethod.GET)
public Page<Item> getAll(PageRequest pageRequest) {
return itemService.findAll(pageRequest);
}