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

Posted

技术标签:

【中文标题】与 Laravel 的友谊系统:多对多关系【英文标题】:Friendship system with Laravel : Many to Many relationship 【发布时间】:2014-09-22 20:35:48 【问题描述】:

我正在尝试使用 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,然后我根据该列检索其他用户的数据。

有什么想法吗?谢谢!

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

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

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

【问题讨论】:

foreach ($user->friends as $friend) $friend->pivot->accepted; 好的,感谢您花在上面的时间,我成功了! 我知道这是一个旧帖子,但是您如何验证好友请求?您使用自己的 Friend 模型吗? 【参考方案1】:

这显然是您的数据库中的一个问题,也是关系的定义。多对多关系类型期望您使用中间表。这是你必须做的:

    在您的架构中创建一个user_friend (id, user_id, friend_id) 表。 从userfriend 表中删除不必要的字段。 创建正确的外键。 user.id-> user_friend.user_id , friend.id -> user_friend.friend_id 更好地定义 UserFriend 模型的完整关系,

例如:

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

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

【讨论】:

谢谢你真的帮助我理解了多对多的工作原理。我刚从 CodeIgniter 来,有很多关于这种关系的学习(感兴趣)。但是我会接受第二个答案,你的要求多一张我在这种情况下不需要的桌子:/。 OP只有一个名为“User”的表,没有“Friend”表。 我也面临这个问题。对于多对多关系,我们需要一个中间表。但是在这种情况下,我们已经有存储用户信息的用户表,所以我们需要创建单独的朋友表。我们可以创建 user_friend 表,该表由 users 表中的 user_id 字段、friend_id 字段和 status 字段组成。它将如何与它一起工作?【参考方案2】:

tldr;您需要 2 个倒置关系才能使其工作,请检查下面的 SETUP 和 USAGE


首先是错误 - 你的关系应该是这样的:

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;

【讨论】:

谢谢你的回答,我真的不知道我可以做这样的关系(合并、倒置等)。像魅力一样工作,现在我将能够在我未来的作品中使用相同类型的关系! :) 我有最后一个问题:使用 $users->friends 时,我如何知道接受的属性(我删除了 whenPivot 以选择所有朋友,无论是否接受)。 检查编辑 - 您需要 1 将 withPivot() 添加到关系中,2 您可以通过调用 friend->pivot->accepted 访问它 - 请参阅我给出的答案中的最后一个示例。 谢谢。我用我的代码编辑了我的第一篇文章,因为我无法让它工作:/。编辑:通过删除 ->wherePivot() 它可以工作,我必须保留它吗? 请告诉我们如何分页? $user->friends()->paginate(25) 将不起作用。

以上是关于与 Laravel 的友谊系统:多对多关系的主要内容,如果未能解决你的问题,请参考以下文章

与同一张表的关系(多对多?) - Laravel

Laravel 与渴望的多对多关系

Laravel 多对多关系检查与中间表

Laravel:具有多对多关系的历史排名系统

Eloquent 中与分类学的多对多关系

Laravel 与 uuid 的多对多关系返回总是空的