我在 CategoriesController 中的 admin_index() 方法中使用了以下代码
$this->set('title_for_layout', __('Categories', true));
$treelist = $this->Category->generateTreeList(null, null, null, '_');
$categories = $this->Category->children();
$i = 0;
foreach ($treelist as $value) {
$categories[$i]['Category']['path'] = $value;
$i++;
}
$this->set(compact('categories'));
如何对类别列表进行分页?