我有很多用户,我正在使用分页但我的经理希望我有一个选项,可以在一个页面上看到所有用户。我怎样才能做到这一点。我在用户索引操作中有这个
public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}
感谢
答案 0 :(得分:1)
(这个问题似乎太简单了......也许我误解了?)
常规查找('全部')怎么样?
public function index($all = false) {
$this->User->recursive = 0;
if($all){
$this->set('users', $this->User->find('all'));
} else {
$this->set('users', $this->paginate());
}
}
然后转到/ users / all