我的类别模型:
class Category extends AppModel {
public $displayField = 'name';
// public $actsAs = array('Containable');
public $hasAndBelongsToMany = array(
'Post' => array(
'className' => 'Post',
'joinTable' => 'categories_postss',
'foreignKey' => 'category_id',
'associationForeignKey' => 'post_id',
'unique' => 'keepExisting'
)
);
}
$params['contain'] = array('Post' => array(
'limit'=> 3));
pr($this->Category->find('first',$params)); exit;
它正在获取所有帖子,无论限制如何。我想做的事:
我有这个页面,我可以在其中列出所有类别和与之相关的最新 5 篇文章。我想将关联模型限制为仅 5 行。
有任何想法吗?