我有很多用户,我正在使用分页,但我的经理希望我有一个选项,可以在一个页面上看到所有用户。我怎样才能做到这一点。我在用户索引操作中有这个
public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}
谢谢
我有很多用户,我正在使用分页,但我的经理希望我有一个选项,可以在一个页面上看到所有用户。我怎样才能做到这一点。我在用户索引操作中有这个
public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}
谢谢