gpt4 book ai didi

php - Laravel:根据 Eloquent 关系获取用户

转载 作者:行者123 更新时间:2023-11-29 02:15:53 25 4
gpt4 key购买 nike

我有一个 User 模型,它有一个 type 属性和其他属性。类型用于识别 parent child

parent 和 child (学生)之间存在多对多关系。学生也属于一个或多个(模型)。

用户模型

/**
* Filter the scope of users to student type.
*
* @param $query
*/
public function scopeStudent($query){
$query->where('type', '=', 'std');
}

/**
* Filter the scope of users to parent type.
*
* @param $query
*/
public function scopeParent($query){
$query->where('type', '=', 'prt');
}

/**
* List of groups the user is associated with.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function groups(){
return $this->belongsToMany('\App\Group', 'group_user_assoc')
->withTimestamps();
}

/**
* List of students associated with the user(parent).
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function children(){
return $this->belongsToMany('\App\User', 'student_parent_assoc', 'parent_id', 'student_id')
->withPivot('relation');
}

/**
* List of parents associated with the user(student).
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
*/
public function parents(){
return $this->BelongsToMany('\App\User', 'student_parent_assoc', 'student_id', 'parent_id')
->withPivot('relation');
}

上述关系运行正常。

下面是我的关联表。

student_parent_assoc
----------------------
+------------+------------------+------+-----+
| Field | Type | Null | Key |
+------------+------------------+------+-----+
| student_id | int(10) unsigned | NO | PRI |
| parent_id | int(10) unsigned | NO | PRI |
| relation | varchar(25) | YES | |
+------------+------------------+------+-----+

group_user_assoc
----------------------
+------------+------------------+------+-----+
| Field | Type | Null | Key |
+------------+------------------+------+-----+
| group_id | int(10) unsigned | NO | MUL |
| user_id | int(10) unsigned | NO | MUL |
| created_at | timestamp | NO | |
| updated_at | timestamp | NO | |
+------------+------------------+------+-----+

我需要找到不属于任何组的学生和他们的 parent 。我设法找到了这样的学生

$students = User::student()
->whereDoesntHave('groups')
->get();

问题:现在我想找到这些学生的 parent 。但是我无法为此建立 Eloquent 查询。我该怎么做?

注意:我可以从上面的查询中获取学生集合并运行一个foreach 循环来获取他们的 parent

$parents = new Collection;
foreach($students as $student) {
foreach($student->parents as $parent) {
$parents->push($parent);
}
}
$parents = $parents->unique();

但我需要一个 Builder 对象而不是一个 Collection,因为我正在使用 Datatables server side processingYajra/datatables .

最佳答案

要加载parents 关系,您必须使用预先加载。2 个方法是 with($relation)load($relation)。不同之处在于您让 parent 已经有了结果对象或稍后加载它们。

因此,在您的示例中,您可以使用 with('parents') 获取 parent ,或者如果您想修改结果集:

User::student()
->with(['parents' => function ($parentsQueryBuilder) {
$parentsQueryBuilder->where('condition', 1)->whereIn('condition2', [1,2,3]);
}])
->whereDoesntHave('groups')
->get();

然后你也会让你的 parent 建立关系,但性能会很高,因为你只需要一个查询就可以将 parent 加载到你的对象中。然后,如果需要,您可以像这样在一个集合中采摘它们:

$students->pluck('parents')->flatten()->unique();

或者示例 2 - 如果您只需要与选定学生相关的所有家长 - 几乎与预加载的功能相同:

$studentIds = $students->modeKeys();
User::parent()->whereHas('children', function ($query) use($studentIds) {
$query->whereIn('id', $studentIds);
})->get();

已更新

要获得 parent 的 build 者试试这个:

/** BelongsToMany   <- relation query builder */    
$relation = with(new User)->query()->getRelation('parents');

$relation->addEagerConstraints($students->all());

这将为您创建 BelongsToMany 关系的新实例并将 whereIn($studentIds) 的约束附加到它。然后点击 ->get() 你必须收到相关的 $parents

关于php - Laravel:根据 Eloquent 关系获取用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39804963/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com