我发现这个数据库的组件和laravel的数据库组件一致,应该都是一样的,简单写了下模型关联,并且正常。但是文档里面只有简单的介绍CURD并没有介绍组件的模型关联,可以补充模型关联文档
class Da extends Model
{
protected $table = 'test1';
protected $guarded = [];
public $timestamps = false;
public function te(){
return $this->belongsTo('app\model\Da','id','id');
}
}
$test = Da::with('te')->get();
return response($test);
它本身就是laravel的数据库。