gpt4 book ai didi

php - 找不到 laravel 一对多关系列

转载 作者:行者123 更新时间:2023-11-29 04:07:14 25 4
gpt4 key购买 nike

我有以下模型:

class Question extends Eloquent 
{
public function quiz()
{
return $this->belongsTo('Quiz','id_quiz','id');
}
public function answer()
{
return $this->hasMany('Answer');
}
}

class Answer extends Eloquent
{
public function question()
{
return $this->belongsTo('Question','id_question','id');
}
}

在我使用的 Controller 中:

$questions =  Question::with('answer')->whereHas(
'quiz', function($q) use($id) {$q->where('id', $id);
})->get();

我收到以下错误:

Column not found: 1054 Unknown column 'answers.question_id' in 'where clause' (SQL: select * from answers where answers.question_id in (10, 11, 12, 13)))

最佳答案

您应该以这种方式在您的Question 模型中定义您的answer 关系:

public  function answer(){
return $this->hasMany('Answer','id_question','id');
}

因为正如您所说,您有列 id_question 而不是 question_id 在这种情况下什么是默认值。

关于php - 找不到 laravel 一对多关系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29193203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com