我在Laravel中有两个模型
class Customer extends Moloquent{
protected $collection = 'Customers';
protected $guarded = [];
public function maritalStatus()
{
return $this->hasOne('App\Models\MaritalStatus', 'maritalStatus_id', '_id');
}
}
class MaritalStatus extends Moloquent{
protected $collection = 'MaritalStatus';
protected $guarded = [];
public function customer() {
return $this->belongsTo('App\Models\Customer');
}
}
当我进行查询时
$customers = Customer::with('maritalStatus')->get();
结果是完整的客户输入,但在marital_status中始终为NULL
> _id: "558daaf95129a452020043b7" address: "Solanda Sector 1" cantonCode: "1" cantonName: "Quito" cellphones: [] created_at:
> "2015-06-26 19:41:45" customerSex: "M" customerType: "N" emails: []
> identification: "1715339444" incomeSourceCode: "B" incomeSourceName:
> "Empleado Público" isPassport: "0" maritalStatusCode: ""
> maritalStatusName: "Soltero" maritalStatus_id:
> "558d7c545129a45202004355"
> **marital_status: null** names: "Bryan Alexis" parishCode: "8" parishName: "Chillogallo" provinceCode: "17" provinceName: "Pichincha"
> surnames: "Guamba Chamorro" telephones: [] updated_at: "2015-06-26
> 19:41:45" user_id: "558d7c5e5129a452020043aa"
我尝试了几次不同的选择,但我不知道发生了什么,我很疯狂!,请帮助我!
答案 0 :(得分:0)
这真的是一对一的关系吗?假设婚姻状况包含像"单身","已婚","离婚","丧偶"等等,这将是一对多的关系。
class Customer extends Moloquent
{
protected $collection = 'Customers';
protected $guarded = [];
public function maritalStatus()
{
return $this->belongsTo('App\Models\MaritalStatus', 'maritalStatus_id', '_id');
}
}
class MaritalStatus extends Moloquent
{
protected $collection = 'MaritalStatus';
protected $guarded = [];
public function customer()
{
return $this->hasMany('App\Models\Customer', 'maritalStatus_id', '_id');
}
}