所以我有以下型号:
class TemplateEntity extends Model {
protected $table = "TemplateEntities";
const UPDATED_AT = null;
const CREATED_AT = null;
public function element() {
return $this->morphTo("element", "entity_type", "id_Entity");
}
public function getEntityTypeAttribute($entity_type) {
return 'App\\' . $entity_type;
}
}
class Template extends Model {
protected $table = "Template";
const UPDATED_AT = null;
const CREATED_AT = null;
public function entities() {
return $this->hasMany("App\TemplateEntity", "id_Template");
}
}
class TemplateEntity extends Model {
protected $table = "TemplateEntities";
const UPDATED_AT = null;
const CREATED_AT = null;
public function element() {
return $this->morphTo("element", "entity_type", "id_Entity");
}
public function getEntityTypeAttribute($entity_type) {
return 'App\\' . $entity_type;
}
}
我想使用Eloquent ORM的:: with()方法来加载模板实体元素,但每当我这样做时,我会收到一个错误:
//$template_id is defined as a controller param
$template = Template::with("entities", "entities.element")->where("id", "=", $template_id)->get()
"Class 'App\' not found"
我做了一些调试,当我在TemplateEntity的GetEntityTypeAttribute()方法中回显$ entity_type时,我得到一个空值。但是,如果我不使用预先加载,我的模型通常可以正常工作,但如果可能的话我想将它添加到我的应用程序中以提高效率。
你们所能提供的任何帮助都会有所帮助!
编辑:修正了一个拼写错误,应该是Template :: with而不是$ template :: with
部分问题可能是该变量中的空白类。建议您在调用get()
时使用类名。所以\App\Template::
而不是$template::
。
另一个要帮助的项目可能就是你打电话给关系的急切负荷。也许试着通过这个功能调用。这可能对你更好:
\App\Template::with(['entities' => function($query){
$query->with('element');
}])->get();
访问器功能可能会干扰Laravel变形功能。我意识到你想在DB中使用类的缩写名称。要在不使用getter(和全局)的情况下执行此操作,我建议使用morphMap。
在boot()
方法内的AppServiceProvider中:
\Illuminate\Database\Eloquent\Relations\Relation::morphMap([
'MyTemplate' => \App\MyTemplate::class,
'Section' => \App\Section::class,
// etc.
]);
这将允许您仅向数据库添加“部分”并从类中删除访问者功能。