与Laravel的友谊系统:多对多的关系

2022-08-30 17:32:25

我试图与Laravel建立一个友谊系统(我从它开始),但我被关系所阻止。事情是这样的:有一个表用户和一个表朋友,其中包含以下列:

friends: id, user_id, friend_id, accepted.

它看起来像一个多对多,所以这是我在User类上设置的:

class User extends Eloquent {
    function friends()
    {
        return $this->belongsToMany('User');
    }
}

但是当我尝试:

$friends = User::find($id)->friends()->get()

我有这个错误:

Base table or view not found: 1146 Table 'base.user_user' doesn't exist

我想获得用户的朋友列表,无论用户是否发送了邀请或收到了邀请,都无关紧要。因此,用户可以在user_id或friend_id上ba,然后我根据该列检索其他用户的数据。

有什么想法吗?谢谢!

编辑:这是我使用的代码:

$usersWithFriends = User::with('friendsOfMine', 'friendOf')->get();
$user = User::find(Auth::id())->friends;

foreach($user as $item) {
    echo $item->first()->pivot->accepted;
} 

答案 1

tldr;您需要2个倒置的关系才能使其正常工作,请检查下面的设置和用法


首先,错误 - 这是你的关系应该是什么样子的:

function friends()
{
  return $this->belongsToMany('User', 'friends', 'user_id', 'friend_id')
    // if you want to rely on accepted field, then add this:
    ->wherePivot('accepted', '=', 1);
}

然后它将正常工作而不会出现错误:

$user->friends; // collection of User models, returns the same as:
$user->friends()->get();

设置

但是,您希望关系以两种方式工作。Eloquent不提供这种类型的关系,因此您可以改用2个倒置关系并合并结果

// friendship that I started
function friendsOfMine()
{
  return $this->belongsToMany('User', 'friends', 'user_id', 'friend_id')
     ->wherePivot('accepted', '=', 1) // to filter only accepted
     ->withPivot('accepted'); // or to fetch accepted value
}

// friendship that I was invited to 
function friendOf()
{
  return $this->belongsToMany('User', 'friends', 'friend_id', 'user_id')
     ->wherePivot('accepted', '=', 1)
     ->withPivot('accepted');
}

// accessor allowing you call $user->friends
public function getFriendsAttribute()
{
    if ( ! array_key_exists('friends', $this->relations)) $this->loadFriends();

    return $this->getRelation('friends');
}

protected function loadFriends()
{
    if ( ! array_key_exists('friends', $this->relations))
    {
        $friends = $this->mergeFriends();

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

protected function mergeFriends()
{
    return $this->friendsOfMine->merge($this->friendOf);
}

用法

通过这样的设置,您可以执行以下操作:

// access all friends
$user->friends; // collection of unique User model instances

// access friends a user invited
$user->friendsOfMine; // collection

// access friends that a user was invited by
$user->friendOf; // collection

// and eager load all friends with 2 queries
$usersWithFriends = User::with('friendsOfMine', 'friendOf')->get();

// then
$users->first()->friends; // collection

// Check the accepted value:
$user->friends->first()->pivot->accepted;

答案 2

这在你的数据库和关系的定义中都是一个问题。多对多关系类型要求您使用中间表。这是你必须做的:

  1. 在架构中创建一个表。user_friend (id, user_id, friend_id)
  2. 从 和 中删除不必要的字段。userfriend
  3. 创建正确的外键 。-> ,user.iduser_friend.user_idfriend.id -> user_friend.friend_id
  4. 更好地定义用户朋友模型上的完整关系,

例如:

 class User extends Eloquent {
    function friends()
    {
        return $this->belongsToMany('User', 'user_friend', 'user_id', 'friend_id');
    }
}

您可以在Laravel文档中阅读更多内容,这里


推荐