Skip to content
New issue

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

perf(分页查询): 返回重新分页的页码 #210

Merged
merged 6 commits into from
Apr 14, 2023
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ default <T> Mono<PagerResult<T>> queryPager(QueryParamEntity query, Function<E,
return Mono.just(PagerResult.of(0, new ArrayList<>(), query));
}
//查询前根据数据总数进行重新分页:要跳转的页码没有数据则跳转到最后一页
return query(query.clone().rePaging(total))
return query(query.rePaging(total))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

为啥移除clone

.map(mapper)
.collectList()
.map(list -> PagerResult.of(total, list, query));
Expand Down