分类列表分页

时间:2012-07-05 10:56:21

标签: cakephp cakephp-2.2

我在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'));

如何分类类别列表?

1 个答案:

答案 0 :(得分:0)

你应该能够调用paginate。

$this->set('categories', $this->paginate());

您需要确保在视图中有分页控件。