在laravel中以雄辩的关系获取错误列的数据

Posted

技术标签:

【中文标题】在laravel中以雄辩的关系获取错误列的数据【英文标题】:Fetching data with wrong column with eloquent relationship in laravel 【发布时间】:2018-07-01 22:58:35 【问题描述】:

我有两个模型 Country 和 State。 它们之间的关系如下: 国家:

public function States()

   return $this->hasMany('App\State');

状态:

public function Country()

  return $this->belongsTo('App\Country');

现在,我想在 show 方法中获取属于该国家/地区的状态。

public function show(Country $country)

    $states = $country->States()->get();
    dd($states);

但是,这里会抛出一个错误: SQLSTATE [42S22]:未找到列:1054 'where 子句'中的未知列'states.country_id'(SQL:select * from states where states.country_id = 11 和 states.country_id 是不为空)

country_id 不存在是对的,因为它被命名为 countries_id 因为 Country 的表名称是国家。

请帮忙解决这个错误。

【问题讨论】:

states.country_id 引用表 states 和列 country_id,如果你想引用 Country 表使用 country。 【参考方案1】:

在关系定义中添加外键:

return $this->hasMany('App\State', 'countries_id');

https://laravel.com/docs/5.5/eloquent-relationships#one-to-many

【讨论】:

【参考方案2】:

您的foreign key 不匹配,在您的relationship 函数中添加外键列作为second 参数。

public function States()

  return $this->hasMany('App\State','countries_id');

通过convention,Eloquent 将拥有模型的"snake case" 名称和suffix_id 作为foreign key。这就是为什么它得到country_id 而不是countries_id

【讨论】:

以上是关于在laravel中以雄辩的关系获取错误列的数据的主要内容,如果未能解决你的问题,请参考以下文章

Laravel 5 具有雄辩的关系回调函数返回错误记录

Laravel 雄辩模型如何从关系表中获取数据

如何编写相同的代码并以雄辩的关系获取相同的数据... laravel

用于 maria-db 动态列的 Laravel 雄辩包装器

groupBy 在 laravel 中具有雄辩的关系

Laravel 5.4雄辩的一对多关系