所以我正在尝试创建一个taggable
表格,该表格允许多个models
有与之关联的标记,并认为Laravel的Polymorphic relationships将是最佳选择。
不幸的是,我似乎无法让他们在以下设置中工作。运行php artisan migrate:refresh --seed
时收到以下错误。
{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","message":"Class name must be a valid object or a string","file":"...\\vendor\\laravel\\framework\\src\\
Illuminate\\Database\\Eloquent\\Model.php","line":527}}
我认为问题是由于Taggable
模型具有与下面列出的morphTo
相同的名称。由于更改此问题可以解决问题。为什么这会导致问题?
可标记模型
class Taggable extends Eloquent {
protected $table = 'taggable';
public function taggable()
{
return $this->morphTo();
}
}
跟踪模型
class Track extends Eloquent {
protected $table = 'tracks';
protected $fillable = array('title', 'year', 'image');
protected $guarded = array('id');
public function playlists()
{
return $this->belongsToMany('Playlist');
}
public function tags()
{
return $this->morphMany('Taggable', 'taggable');
}
}
标记模型
class Tag extends Eloquent {
protected $table = 'tags';
protected $fillable = array('title', 'description');
protected $guarded = array('id');
}
移植
Schema::create('taggable', function(Blueprint $table)
{
$table->increments('id');
$table->integer('taggable_id');
$table->string('taggable_type');
$table->integer('tag_id');
$table->timestamps();
});
DatabaseSeeder Snippit
...
DB::table('taggable')->delete();
$track1 = Track::find(1);
$idm = Tag::find(1);
$track1->tags()->create(array('tag_id' => $idm->id));
...
任何帮助都会在此事上受到高度赞赏。
答案 0 :(得分:2)
尝试简化您的关系 - 您似乎正在使用中间表来允许标记重用 - 这是值得称赞的,但会使您的问题复杂化。
从标记和跟踪模型开始 - 在基本多态关系起作用后增加额外的复杂性。
此外,问题可能是您为模型使用相同的名称,因为实际关系函数已命名。 IE Taggable-> taggable()vs Tag-> taggable()