这是"评估"表
-id
-title
-slug
这是"会员"表
-id
-name
-surname
这是" evaluatetion_member"数据透视表
-evalution_id
-member_id
评估表有3条记录如下
id | title | slug
1 | a | a
2 | b | b
3 | c | c
会员表有10条记录,如下所示
id | name | surname
1 | xx1 | xx1
2 | xx2 | xx2
3 | xx3 | xx3
4 | xx4 | xx4
5 | xx5 | xx5
6 | xx6 | xx6
7 | xx7 | xx7
8 | xx8 | xx8
9 | xx9 | xx9
10 | xx10 | xx10
evaluatetion_member表有10条记录如下
evalution_id |member_id
1 | 1
1 | 2
1 | 3
3 | 4
3 | 5
3 | 6
3 | 7
3 | 8
3 | 9
3 | 10
这是我的评估模型
public function members()
{
return $this->belongsToMany('App\Member');
}
这是我的会员模特
public function evalutions()
{
return $this->belongsToMany('App\Evalution');
}
这是我的代码:
$ evalution = Evalution :: find($ id) - > with(' members') - > first();
从此代码返回成员列表,但出现错误记录。正确的记录必须从第4个项目开始,到最后一个项目结束,但返回列表包含前3个记录。
如果我更改评估模型如下:
public function members()
{
return $this->belongsToMany('App\Http\Models\Member', 'evalution_member', 'evalution_id', 'member_id');
}
返回列表只包含1条记录,它是evaluatetion_member表中的最后一条记录。
为什么?
那里有什么问题?
答案 0 :(得分:0)
将数据透视表名称添加到此类方法中。
public function members()
{
return $this->belongsToMany('App\Member', 'evalution_member');
}