Zend_Db_Table 关系和 Zend_Paginator
有没有办法,热应用分页器限制选择,我发送到 findDependentRowset 函数? 例如:
$select = $row->select();
$select->order('item_name');
$row->findDependentRowset($table, null, $select)
谢谢
is there a way, hot to apply paginator limit on select, which I send to findDependentRowset function? for example:
$select = $row->select();
$select->order('item_name');
$row->findDependentRowset($table, null, $select)
thank's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需为传递给 findDependentRowset 的选择添加限制。
它看起来像这样:
You need just add limit to your select passed to findDependentRowset.
It will look like this:
这看起来不错,但分页器不会有有关所有行数的信息。 我找到了覆盖 Zend_Paginator_Adapter_DbSelect 和设置函数的解决方案,
这将返回具有应用限制的选择,我可以使用 Paginator 及其全部功能
this looks good, but paginator will don't have information about all rows count. I found solution to override Zend_Paginator_Adapter_DbSelect and set function
this will return select with applied limit and I can use Paginator with its whole funcionality