您使用 find() 函数的方式意味着您需要标签表的所有行。
在您的模型中:
class Post extends AppModel {
/**
* @see Model::$actsAs
*/
public $actsAs = array(
'Containable',
);
public $hasAndBelongsToMany = array('Tag');
}
class Tag extends AppModel {
/**
* @see Model::$actsAs
*/
public $actsAs = array(
'Containable',
);
public $hasAndBelongsToMany = array('Post');
}
您应该以这种方式使用 find 函数:
$postWithTag = $this->Post->find('first', array('conditions' => array('Post.id' => $post_id),'contain'=>array('Tag')));
它返回 Post 及其标签。
如果你只想要没有帖子的标签,你应该在 PostTag 模型中放置 belongsTo 关系:
class PostTag extends AppModel {
/**
* @see Model::$belongsTo
*/
public $belongsTo = array(
'Post','Tag'
);
}
然后以这种方式使用查找功能:
class PostController extends AppController {
/**
* @see Controller::$uses
*/
public $uses = array(
'Post', 'PostTag'
);
public function post(){
/**
* Your code
*/
$tags = $this->PostTag->find('all', array('conditions' => array('PostTag.post_id' => $post_id)));
$this->set('tags',$tags);
}