我有一个Link
模型,需要一个引用Page
,Redirect
或Gallery
模型的字段。我希望能够执行第$link->obj
行并返回页面,重定向或图库对象,具体取决于保存到哪个。
Polymorphic relations似乎是我正在寻找的,除了我似乎无法使用这种方法。
<?php
$item = Page::find (1);
$link = new Link ();
$link->linkable ()->save ($item);
$link->save ();
<?php
class Link extends Eloquent
{
protected $table = 'link';
public function linkable ()
{
return $this->morphTo ();
}
}
class Page extends Eloquent
{
protected $table = 'page';
public function linkable ()
{
return $this->morphOne ('Link', 'linkable');
}
}
class Redirect extends Eloquent
{
protected $table = 'redirect';
public function linkable ()
{
return $this->morphOne ('Link', 'linkable');
}
}
class Gallery extends Eloquent
{
protected $table = 'gallery';
public function linkable ()
{
return $this->morphOne ('Link', 'linkable');
}
}
link
数据库表包含linkable_id
和linkable_type
个字段。
我想我必须误解文档,因为这似乎不起作用。
答案 0 :(得分:1)
你很亲密。假设您正确设置了数据库,我看到的唯一问题是您在save()
关系上调用morphTo
。
关系的morphTo
方面是belongsTo
方。 belongsTo
方不使用save()
方法,而是使用associate()
方法。
因此,您正在寻找的代码应该是:
$item = Page::find(1);
$link = new Link();
$link->linkable()->associate($item); // associate the belongsTo side
$link->save();
// and to show it worked:
$link->load('linkable');
$page = $link->linkable;
echo get_class($page); // prints "Page"