我得到的实际错误:
语法错误或访问冲突:1064 您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 1 行的“孩子”附近使用正确的语法
它让我发疯,甚至无法想象它为什么会被提高。
在我的控制器CategoryController.php
中,我有:
public function index($id = null) {
$this->set('categories', $this->Category->children($id, true));
在模型中Category.php
:
public $actsAs = array('Containable', 'Tree');
CakePHP 版本:2.4.1