laravel关联模型如何设置获取部分字段

现在在学习使用laravel5,但是有个问题,就是我通过这样的一个方法这是了关联关系,但是如何设置获取user模型中的某几个字段,而不是全部,我并不想也获取其他字段,求大神帮忙
public function user()
{
    return $this->hasOne('App\Model\User','user_id');
}
已邀请:

mengmou6688

赞同来自:

public function user()

{

return $this->hasOne('App\Model\User','user_id')->get([column]);

}

瞌睡的超级兵

赞同来自:

求问一下,这样真的可以吗?我这样写
return $this->hasOne('App\Model\User','user_id')->get(array('nickname','header'));

还是不可以啊,报错Method addEagerConstraints does not exist.

要回复问题请先登录注册