在我的应用程序中,用户可以与另一个用户成为朋友。因此,它们在两个表之间具有多对多关系。以这种方式:Users > Friends < Users
表格如下所示:
Users:
id
username
password
Friends:
id
user_id_from
user_id_to
我已经像这样设置了模型:
class User extends AppModel
{
public $name = 'User';
public $hasOne = 'Profile';
public $hasMany = array(
'Post',
'Answer',
'Friend'
);
public $actsAs = array('Containable');
}
class Friend extends AppModel
{
var $name = 'Friend';
var $belongsTo = array(
'Sender' => array(
'className' => 'User',
'foreignKey' => 'user_id_from'
),
'Recipient' => array(
'className' => 'User',
'foreignKey' => 'user_id_to'
)
);
public $actsAs = array('Containable');
}
但是它似乎没有正确链接它们?
我在用户模型中使用此代码:
public function getFriends($username)
{
return $this->find('all', array('conditions' => array('User.username' => $username, 'Friend.status'=>1)
));
}
然后在访问类似的网址时/users/USERNAME/friends
,应列出该人的朋友。调用它的方法是:
public function index( $username )
{
$friends = $this->User->getFriends($username);
$this->set('friends', $this->paginate());
}
有什么问题?