We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@RequestMapping("/getUserPages") public Page<User> getTNlmSysUserPage(User user, Integer pageNum, Integer pageSize){ Page<User> userPages = userService.getUserPages(user, pageNum, pageSize); return userPages; } 如上是我的controller代码,我在方法里设置断点前台传值,可是我的pageNum与pageSize全是空接不到,在前台debug时确认是有值的。请问是我需要什么特别的配置吗?
@RequestMapping("/getUserPages") public Page<User> getTNlmSysUserPage(User user, Integer pageNum, Integer pageSize){ Page<User> userPages = userService.getUserPages(user, pageNum, pageSize); return userPages; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@RequestMapping("/getUserPages") public Page<User> getTNlmSysUserPage(User user, Integer pageNum, Integer pageSize){ Page<User> userPages = userService.getUserPages(user, pageNum, pageSize); return userPages; }
如上是我的controller代码,我在方法里设置断点前台传值,可是我的pageNum与pageSize全是空接不到,在前台debug时确认是有值的。请问是我需要什么特别的配置吗?
The text was updated successfully, but these errors were encountered: