将PageRequest对象从Angular 4传递给Spring Controller

时间:2017-09-26 12:40:43

标签: angular pagination controller paging

是否有任何解决方案可以从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);
        }

0 个答案:

没有答案