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
src/main/java/com/alibaba/higress/sdk/model/PaginatedResult.java 中的createFromFullList方法里面
int pageNum = query.getPageNum() != null ? Math.max(1, query.getPageNum()) : 0; int pageSize = query.getPageNum() != null && query.getPageNum() > 0 ? query.getPageNum() : DEFAULT_PAGE_SIZE; int startIndex = pageNum * pageSize;
这里的是不是应该是 query.getPageSize() ??
The text was updated successfully, but these errors were encountered:
确实是写错了。请问你是否愿意协助修复一下呢?
Sorry, something went wrong.
修复 issue higress-group#434: 分页类中,分页取值取错的问题
51fcce3
修复 issue #434: 分页类中,分页取值取错的问题 (#437)
e75d63e
No branches or pull requests
src/main/java/com/alibaba/higress/sdk/model/PaginatedResult.java
中的createFromFullList方法里面
int pageNum = query.getPageNum() != null ? Math.max(1, query.getPageNum()) : 0;
int pageSize = query.getPageNum() != null && query.getPageNum() > 0 ? query.getPageNum() : DEFAULT_PAGE_SIZE;
int startIndex = pageNum * pageSize;
这里的是不是应该是 query.getPageSize() ??
The text was updated successfully, but these errors were encountered: