我的代码需要一些帮助
我正在使用 cakephp 1.26 并进行分页。 你能帮我解决以下代码吗? 我无法弄清楚代码中有什么问题。
$this->set('posts', $this->paginate = array('order'=>array('Post.created'=> 'DESC'), 'conditions'=>array('Post.zero'=>'0'), 'limit'='6'
)
);
在 .ctp 文件中我有这个:
<table>
<tr><td>
<?php echo $paginator->numbers(); ?>
<?php
echo $paginator->prev('Previous', null, null);
echo $paginator->next(' Next', null, null);
?>
</td></tr>
</table>
I am using cakephp 1.26 and doing pagination.
could you help me with the following code please?
I can't figure out what's wrong in the code.
$this->set('posts', $this->paginate = array('order'=>array('Post.created'=> 'DESC'), 'conditions'=>array('Post.zero'=>'0'), 'limit'='6'
)
);
In the .ctp file I have this:
<table>
<tr><td>
<?php echo $paginator->numbers(); ?>
<?php
echo $paginator->prev('Previous', null, null);
echo $paginator->next(' Next', null, null);
?>
</td></tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你的代码很糟糕。您不能在函数调用内进行赋值。要么做:
要么:
Your code is bad. You cannot make the assignment within the function call. Either do:
or:
你的代码不应该是:
?
Shouldn't your code be:
?
你可以尝试让这个过程更加清晰。
You can try to make the process more clear.