cakePHP 分页视图

发布于 2024-12-08 21:04:42 字数 341 浏览 0 评论 0原文

所以我为 cakePHP 设置了分页。

我遇到的问题是在以下视图中

<?php echo $this->Paginator->prev('« Previous'); ?>
<?php echo $this->Paginator->numbers(); ?>
<?php echo $this->Paginator->next('Next »'); ?> 

所以发生的情况是数字显示正常,我可以查看不同的页面。问题是上一个和下一个按钮不显示。我正在分页 3 个页面。

如果我缺少任何内容,请告诉我。

So I have Pagination setup for cakePHP.

The problem I get is in the views with the following

<?php echo $this->Paginator->prev('« Previous'); ?>
<?php echo $this->Paginator->numbers(); ?>
<?php echo $this->Paginator->next('Next »'); ?> 

So what happens is the numbers show up fine and I can view the different pages. The problem is that the previous and next button don't show up. I have 3 pages that I am paging.

Please let me know if there is anything that I am missing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缱绻入梦 2024-12-15 21:04:42

也许 CSS 将它们设置为禁用?

无论如何尝试

<?php echo $this->Paginator->prev('« Previous', null, null, array('class' => 'disabled')); ?>
<?php echo $this->Paginator->next('Next »', null, null, array('class' => 'disabled')); ?> 

Maybe the CSS It's setting them as disabled?

Anyhow try

<?php echo $this->Paginator->prev('« Previous', null, null, array('class' => 'disabled')); ?>
<?php echo $this->Paginator->next('Next »', null, null, array('class' => 'disabled')); ?> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文