troyzhxu / bean-searcher

🔥🔥🔥 A read-only ORM focusing on advanced query, naturally supports joined tables, and avoids DTO/VO conversion, making it possible to realize complex query in one line of code !
https://bs.zhxu.cn
Apache License 2.0
1.31k stars 148 forks source link

建议增加前端可以控制是否分页的参数,比如分页大小参数pageSize=0时 #90

Closed flyingdew closed 9 months ago

troyzhxu commented 9 months ago

不分页查询全部使用 searchAll(..) 方法

troyzhxu commented 9 months ago

不需要返回总条数信息 使用 searchList(..) 方法

flyingdew commented 9 months ago

我的意思是同一个接口,可以分页,也可以不分页,分页与否由调用方决定。

troyzhxu commented 9 months ago

我的意思是同一个接口,可以分页,也可以不分页,分页与否由调用方决定。

那你的接口(Controller)内部 if else 一下即可,查询全部是一个危险操作,作为一个以直接处理外部参数为主要开发模式的查询框架,提供这样的参数不太安全。