我有一個已定義var $ hasMany = array(「Comment」)的博客模型;CakePHP:與條件hasMany
如何在評論上應用過濾器以僅選擇與某個評論類別匹配的博客項目?
如果在博客模式,我做
$this->recursive=2;
$this->hasMany=array("Comment"); //in Comment i have $belongsTo("Blog")
return $this->find("all",array("conditions"=>array("Comment.comment_type_id"=>123)));
我得到說未知Comment.comment_type_id列,因爲蛋糕不作加入一個錯誤。
我覺得這是一個相當普遍的問題,所以我認爲簡單的解決,但我不能找到一個很好的辦法