1

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

如何对类别列表进行分页?

4

1 回答 1

0

你应该能够调用分页。

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

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

于 2013-01-16T18:00:14.397 回答