CakePHP 中具有 hasmany 关联的分页

发布于 2024-09-08 16:46:58 字数 440 浏览 3 评论 0原文

我正在自学 cakePHP 1.26 中的分页。

在 PostsController 中,我有以下代码:

$this->set('views', $this->Testing->Reply->findAllBypost_id($id));

我正在尝试更改用于分页目的的代码,
这是我尝试过的:

$this->paginate=array('conditions'=>array('Reply.post_id'=>'0'), 'limit' => 4);
$w = $this->paginate($this->Testing->Reply); 
$this->set('views', $w);

我不确定这是否是最好的方法,请发表评论。

I am doing some self-learning about pagination in cakePHP 1.26.

In the PostsController, I have this code:

$this->set('views', $this->Testing->Reply->findAllBypost_id($id));

I am trying to alter the code for pagination purpose,
and this is what I have tried out:

$this->paginate=array('conditions'=>array('Reply.post_id'=>'0'), 'limit' => 4);
$w = $this->paginate($this->Testing->Reply); 
$this->set('views', $w);

I am not sure if this is the best way to do it, please comment.

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

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

发布评论

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

评论(1

会发光的星星闪亮亮i 2024-09-15 16:46:58

在我看来是正确的,确保您在视图中使用分页器助手,以便能够最大程度地使用分页。

你可以用这个少一行,如果 post_id 是一个 int ,那么使用一个实际的 int 。我也不会将您的视图变量称为与实际对象或蛋糕密切相关的东西php......

$this->paginate=array('conditions'=>array('Reply.post_id'=> 0), 'limit' => 4);
$this->set('data', $this->paginate($this->Testing->Reply));

Looks right to me, ensure you use the paginator helper in your views to be able to use the pagination to it's fullest extent.

You can make that one less line with this and if post_id is an int then use an actual int. I would also refrain from calling your view variables something closely relating to actual objects or pieces of cakephp...

$this->paginate=array('conditions'=>array('Reply.post_id'=> 0), 'limit' => 4);
$this->set('data', $this->paginate($this->Testing->Reply));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文