程式碼更新位址
company 物業表 主表,
propertyMain 小區表 從表格一個物業對應多個小區,一個小區對應一個物業
應用場景,小區增刪改的列表,需要顯示小區對應的 物業資訊
用 with 取不出來! ! ! !
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PropertyMain extends Model {
protected $table = 'property_main';
public $primaryKey = 'mId';
protected $fillable = [
'mId',
'phone',
'companyId',
];
public function company() {
//参数1目标模型 参数2当前模型与company表关联的外键ID 参数3companny主键ID
return $this->belongsTo('App\Models\Company','companyId','mId');
}
}
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Company extends Model {
protected $table = 'company';
public $primaryKey = 'mId';
protected $fillable = [
'mId',
'name',
'phone',
'introduce'
];
public function propertyMain() {
return $this->hasMany('App\Models\Property','mId','mId');
}
}
$propertyMains = PropertyMain::with('company')->get();
foreach ($propertyMains as $b){
dd($b->company); // 返回空
}
$propertyMains = PropertyMain::where([])->orderBy('created_at', 'asc')->paginate(12);
foreach ($propertyMains as $b){
dd($b->company); // 可以取到数据
}
曾经蜡笔没有小新2017-05-16 16:49:12
外鍵寫錯了 mId -> companyId
一對多的關係,PropertyMain 是屬於 Company 的,在 PropertyMain 裡存了 Company 的主鍵作為外鍵,所以外鍵始終是 companyId
public function propertyMain() {
return $this->hasMany('App\Models\PropertyMain','companyId','mId');
}
漂亮男人2017-05-16 16:49:12
return $this->hasMany('AppModelsProperty','companyId','mId');
第二個參數是目前模型在關聯模型裡的外鍵