我正在尝试进行导航。我有产品的树列表。
Products
-product A
--product A.1
--product A.2
---product A.2.1
-product B
--product B.1
我怎样才能在我的导航中只显示父级。例如,
Products
-product A
-product B
我使用 cakephp 3.0。我根据教程博客制作了这个树列表。有人可以帮我吗?
这是我的控制器。
public function index()
{
$products = $this->Products->find()
->order(['lft' => 'ASC']);
$this->set(compact('products'));
$this->set('_serialize', ['products']);
}