1

在我的应用程序中,我有以下表格:

    Posts
id
title
content
    Users
id
username
password
    Profiles
id
user_id
firstname
lastname
    Comments
id
post_id
user_id
content
    Topics
id
title
    Topic_Posts
id
topic_id
post_id

希望关系是相当明显的!我遇到的问题是最后一个表是帖子和主题之间多对多关系的连接表。我不完全确定如何设置!

这是我的帖子、主题和主题帖子模型:

class Post extends AppModel
{
    public $name = 'Post';

    public $belongsTo = 'User';

    public $hasMany = array('Comment', 'TopicPost');

    public $actsAs = array('Containable');
}
class Topic extends AppModel
{
    public $hasMany = array(
        'TopicPost'
    );
}
class TopicPost extends AppModel {
    public $belongsTo = array(
        'Topic', 'Post'
    );
}

据我所知,关系是正确的?然后在我的方法中,我有以下声明:

$post = $this->Post->find('first',
            array('contain'=>
            array(
                'Comment'=>array('User'=>array('Profile')),
                'User'=>array('Comment','Profile')
            ),
            'conditions'=>array('Post.id'=>$id)));

所以基本上我的问题是如何将主题添加到包含中,因为我不必将评论和用户添加到帖子模型中,所以不知道为什么或接下来要做什么......

另外,我将如何再次将主题拉出?考虑到我正在链接到联接表而不是实际主题,我对这将如何工作感到困惑......除非我只是偏离了轨道。对此的帮助将不胜感激。

4

1 回答 1

2

使用您当前的设置,您可以执行以下操作:

'contain' => array(
    'TopicPost' => array('Topic')
)

或者您可以添加

public $hasAndBelongsToMany = array(
    'Topic' => array('with' => 'TopicPost')
);

Post模型。

然后您的包含将如下所示:

'contain' => array(
    'Topic'
)
于 2012-04-08T20:42:48.740 回答