laravel关联模型如何设置获取部分字段
现在在学习使用laravel5,但是有个问题,就是我通过这样的一个方法这是了关联关系,但是如何设置获取user模型中的某几个字段,而不是全部,我并不想也获取其他字段,求大神帮忙
public function user()
{
return $this->hasOne('App\Model\User','user_id');
}
2 个回复
mengmou6688
赞同来自:
{
return $this->hasOne('App\Model\User','user_id')->get([column]);
}
瞌睡的超级兵
赞同来自:
还是不可以啊,报错Method addEagerConstraints does not exist.