使用get方法从多个表中选择值

时间:2015-05-12 20:58:05

标签: cakephp cakephp-2.3 cakephp-3.0

$pilot = $this->Pilots->get($id, [
    'contain' => ['Cars']
     ???
]);

实体飞行员"有很多"汽车,汽车也是如此,有很多汽车。模型和最后但并非最不重要的模型有很多品牌。

我希望得到所有的汽车,它的模型和品牌,以便试驾。

1 个答案:

答案 0 :(得分:1)

尝试:

function moveU() {
    var currentTopPos = parseInt($("#ball").css('top'));
    // define the new position
    var newBottomPos = currentTopPos - velocity_y;

    if (newBottomPos >= maxTop || newBottomPos <= 0)
        velocity_y *= 0; // multiply the value by -1

    $("#ball").css('top', newBottomPos + 'px');
    maxTop = parseInt($("#outerbox").css('top')) - parseInt($("#outerbox").css('border-left-top')) - parseInt($("#ball").css('top'));
}

CakePHP 3.x Eager Loading Assocations Documentation

编辑:我应该第一次使用点符号,我的错误。请参阅我上面编辑的示例。