Laravel Eloquent 模型进行多表关联查询,为了将主表也能使用别名,我们使用了:
->from('users as u')
这个方法,可以将主表也可以使用别名了
但是,使用软删除时,又会报错:
Column not found: 1054 Unknown column users.deleted_at
略微思索下,应该就是,软删除方法,使用的是主表的 '表名',而非是我们自己定义的 '别名'。
本打算查看下源码,想了下,还是搜索下,因为这应该是一个常见问题。
找个篇文章,不错:
https://learnku.com/articles/16442/laravel-model-uses-soft-delete-left-join-query-table-alias
解决问题:
原因:软删除拼接的 where 条件的字段:
return $this->getTable().'.'.$column;
解决方法:
使用 setTable('u') 来设置下数据表
这里还得注意下:
我的原始代码:
User::from('users as u')
第一次使用:
User::from('users as u')
->setTable('u')
报错:
Call to undefined method Illuminate\Database\Eloquent\Builder::setTable()
原因:
User::from() 后返回的是 Builder 类,而 setTable() 定义在 Model 类
第二次使用:
更换下:
from() 和 setTable() 位置
User::setTable('u')
->from('users as u')
报错:
Non-static method Illuminate\Database\Eloquent\Model::setTable() should not be called statically
原因:
setTable() 不能静态调用
最终:
(new User())
->setTable('u')
->from('users as u')
还挺波折的,这个解决方法必须记住