1

我有三个表:用户、个人资料和朋友。

它们是这样连接的:

public $name = 'User';

    public $hasOne = 'Profile';

    public $hasMany = array(
        'Post',
        'Answer'
    );

    public $hasAndBelongsToMany = array(
        'User'=>array(
            'className'              => 'User',
            'joinTable'              => 'friends',
            'foreignKey'             => 'user_from',
            'associationForeignKey'  => 'user_to'
        )
    );

并且个人资料模型只是一个 belongsTo 用户,所以我没有展示,而朋友模型是虚拟的,通过在用户模型中进行关联。

因此,要获取用户的朋友列表。我在朋友控制器中像这样传递用户名:

public function index( $username )
{   
    $friends = $this->User->find('first', 
        array(
            'conditions'=>array(
               'User.username'=>$username
            ),
            'contain'=>array(
                'Profile',
                'Friend'=>array(
                    'conditions'=>array(
                        'Friend.status'=>1
                    ),
                    'contain'=>'Profile'
                )
            )
        )
    );

    $this->set('friends', $friends);
}

哪个应该为朋友提取数据以及相关的个人资料信息!

但是我得到了这个错误:Model "Friend" is not associated with model "Profile" [APP/Cake/Model/Behavior/ContainableBehavior.php, line 339]所以有些东西不能正常工作......

任何人都可以帮忙吗?

我尝试在模型中将他 hasAndBelongsToMany 的名称更改为 Friends ,但这会引发一个错误,即表格不是 unqiue ......所以这也不是解决方案。

表:

**users**
id
username
password

**profiles**
id
name
user_id

**friends**
id
user_from
user_to
status

如果我将模型更改为:

public $hasAndBelongsToMany = array(
        'Friend'=>array(
            'className'              => 'Friend',
            'joinTable'              => 'friends',
            'foreignKey'             => 'user_from',
            'associationForeignKey'  => 'user_to'
        )
    );

然后我得到这个错误:

Database Error
Error: SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'Friend'

SQL Query: SELECT `Friend`.`id`, `Friend`.`user_from`, `Friend`.`user_to`, `Friend`.`created`, `Friend`.`status`, `Friend`.`id`, `Friend`.`user_from`, `Friend`.`user_to`, `Friend`.`created`, `Friend`.`status` FROM `db52704_favorr`.`friends` AS `Friend` JOIN `db52704_favorr`.`friends` AS `Friend` ON (`Friend`.`user_from` = 6 AND `Friend`.`user_to` = `Friend`.`id`)
4

3 回答 3

2

相关模型的模型和别名应该是唯一的。在您的情况下,问题是:

public $name = 'User';
...
public $hasAndBelongsToMany = array(
    'User'=>array(
    ...

如果friends是连接表名,则可以Friend用作朋友用户的别名。

第二件事是你试图包含两者User => ProfileUser => Friend => Profile这可能也是有问题的。

以我的经验, deep contains 可能会变得非常低效。您可能会考虑从包含中删除好友Profile,然后提取好友用户 ID 并分别获取配置文件。

于 2012-05-05T22:10:28.797 回答
1

我想你正在寻找这样的东西:

用户.php

public $hasAndBelongsToMany = array(
    'Friend'=>array(
        'className'              => 'User',
        'joinTable'              => 'friends',
        'foreignKey'             => 'user_from',
        'associationForeignKey'  => 'user_to'
    )
);

这将在 habtm 关系中将 User 表作为其自身的 Friend 别名。为了遵守约定,连接表应friends_users使用user_idfriend_id键调用。

这是我使用我制作的测试应用程序得到的结果(只需添加您的条件):

$this->User->contain(array(
            'Profile',
            'Friend' => array(
                'Profile',
            ),
        ));
debug($this->User->find('all', array('conditions' => array('User.id' => 1))));

array(
    (int) 0 => array(
        'User' => array(
            'id' => '1',
            'name' => 'user1'
        ),
        'Profile' => array(
            'id' => '1',
            'user_id' => '1'
        ),
        'Friend' => array(
            (int) 0 => array(
                'id' => '2',
                'name' => 'user2',
                'FriendsUser' => array(
                    'id' => '1',
                    'user_id' => '1',
                    'friend_id' => '2'
                ),
                'Profile' => array(
                    'id' => '2',
                    'user_id' => '2'
                )
            )
        )
    )
)
于 2012-05-10T21:42:52.583 回答
1

您的Friend模型没有user_id,这就是User模型无法联系的原因Friend。尝试以下方法:

public function index( $username )
{   
    $this->User->Behaviors->attach('Containable');
    $friends = $this->User->find('first', 
        array(
            'conditions'=>array(
               'User.username'=>$username
            ),
            'contain'=>array(
                'Profile',
                'Friend'=>array(
                    'conditions'=>array(
                        'Friend.status'=>1
                    )
                )
            )
        )
    );

    $this->set('friends', $friends);
}
于 2012-05-06T04:18:37.707 回答