问题是:怎样才能用添加的总分数(total)属性进行排序
场景:
Users表
ID | 姓名 | 语言 | 数学 | 英语
-----------------------------------------
1 | 张三 | 99 | 78 | 66
-----------------------------------------
2 | 李四 | 50 | 100 | 87
-----------------------------------------
3 | 王五 | 88 | 91 | 87
添加的属性 总分数(total)
class User extends Model
{
protected $appends = ['total'];
public function getTotalAttribute () {
$yuwen = $this->attributes['yuwen'];
$shuxue = $this->attributes['shuxue'];
$yingyu = $this->attributes['yingyu'];
return $yunwen + $shuxue + $yingyu;
}
}
如果语文的分数排序时是:
class UserController extends Controller
{
public function userListApi()
{
$datas = User::orderBy('yuwen', 'dsec')->paginate(10);
return response()->json($datas);
}
}
怎么样才能让添加的属性 total 参与排序呢?
- 3 回答
- 0 关注
- 747 浏览
添加回答
举报
0/150
提交
取消