Rumah > Soal Jawab > teks badan
Fungsi definisi perhubungan dalam fail model Dis_Reocrd.php
//1对多关系
public function DisAccountRecord(){
return $this->hasMany('Dis_Account_Record','Ds_Record_ID','Record_ID');
}
Gunakan pernyataan berikut untuk menghubungi
$builder = Dis_Record::where('Users_ID', $Users_ID)
->with('DisAccountRecord')
Pada masa ini, adalah perlu untuk menapis set hasil kosong DisAccountRecord().
世界只因有你2017-05-16 16:50:45
hasMany
Boleh tambah syarat
Serupa dengan
public function DisAccountRecord(){
return $this->hasMany('Dis_Account_Record','Ds_Record_ID','Record_ID')
->whereNotNull('updated_at')
}