我正在使用cakephp 3的tree
行为,并通过CLI生成模型,控制器,模板,它生成了categories
的列表我已经遵循了表结构,数据插入也正是我需要的。但是在模板视图中我有这个代码。
<?php foreach ($categories as $category): ?>
<tr>
<td><?php pr($category);?></td>
<td><?= $this->Number->format($category->id) ?></td>
<td><?= $category->has('parent_category') ? $this->Html->link($category->parent_category->name, ['controller' => 'Categories', 'action' => 'view', $category->parent_category->id]) : '' ?></td>
<td><?= h($category->name) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['action' => 'view', $category->id]) ?>
<?= $this->Html->link(__('Edit'), ['action' => 'edit', $category->id]) ?>
<?= $this->Form->postLink(__('Delete'), ['action' => 'delete', $category->id], ['confirm' => __('Are you sure you want to delete # {0}?', $category->id)]) ?>
</td>
</tr>
<?php endforeach; ?>
此$category->has('parent_category')
条件显示为空白,它应该显示父类别名称。如果其他人遇到同样的问题,请告诉我。任何指向文档的指针都将受到高度赞赏。我已经离开了它没有帮助的官方文件。
答案 0 :(得分:1)
我发现了同样的问题和解决方案。似乎Cake CLI没有为您编写整个代码。需要一些手工工作。
更正的代码控制器:
public function index()
{
//had to add this line for manually call the association
$this->paginate['contain'] = ['ParentCategories'];
$this->set('categories', $this->paginate($this->Categories));
$this->set('_serialize', ['categories']);
}
在CakePHP 3.0中,ContainableBehavior,recursive,bindModel和unbindModel都被删除了。相反,contains()方法已被提升为查询构建器的核心功能。只有在明确打开关联时才会加载关联。这是一件小事,但必须通过整个文档来挖掘它。