我在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'));
如何分类类别列表?
答案 0 :(得分:0)
你应该能够调用paginate。
$this->set('categories', $this->paginate());
您需要确保在视图中有分页控件。