ITの隊長のブログ

ITの隊長のブログです。Rubyを使って仕事しています。最近も色々やっているお(^ω^ = ^ω^)

”Notice (8): Undefined index: conditions [CORE/Cake/Model/Model.php, line 2759]”

Notice (8): Undefined index: conditions [CORE/Cake/Model/Model.php, line 2759]

よくわからんエラーだったけど、アソシエーションの設定が漏れてた。

<?php
...
  // itemsテーブルとimagesテーブルをjoin(hasmany)するアソシエーション
  $this->hasMany = [
    'ItemsImagesRelation' => [
      'className'  => 'ItemsImagesRelation',
      'foreignKey' => 'items_id',
      'conditions' => '', // これが抜けていた
      'dependent'  => true,
      'cascade'    => true
    ]
  ];