0

我正在使用 CakePHP TreeBehavior 类。

$this->set('sports', $this->Sport->children(1,true));

正如您在下面看到的,该函数返回我需要的孩子,但它不绑定模型。运动的名称存储在表标签中。关联在模型中正确定义,如果我使用“查找”方法进行查询,它会绑定它们。但是有没有办法使用 TreeBehavior 函数和强制模型绑定?

array(
(int) 0 => array(
    'Sport' => array(
        'id' => '2',
        'parent_id' => '1',
        'lft' => '6',
        'rght' => '7',
        'tag_id' => '51f0099f-ead0-4f41-8d0f-176c9c2b3e89'
    )
),
(int) 1 => array(
    'Sport' => array(
        'id' => '3',
        'parent_id' => '1',
        'lft' => '8',
        'rght' => '11',
        'tag_id' => '79177f20-f46a-11e2-96ba-00116b93c9e5'
    )
)
 )
4

1 回答 1

0

如果您只需要直接的孩子,为什么不使用 Model::find 方法?

$this->Sport->find('all', array('conditions'=>array('Sport.parent_id'=>1))
于 2013-07-31T23:14:00.543 回答