我试图与Laravel建立多态关系。我已经阅读了文档并查看了相关代码,但似乎无法完成所有工作。我正在尝试将photos
附加到rooms
,其中一个房间可以有很多照片。与关系相关联的type
有效,但id
始终为0
。
为什么它的一部分会有效,有人可以指出我的关系中有什么问题吗?
我认为问题与我在表格中创建数据的方式有关:
$photo = new Photo;
$photo->URL = 'thePhotoURL.extension';
$photo->save();
$room = new Room;
$room->name = 'Some Room Name';
// seems weird to me that I "save" the photo twice
// or am I just saving the relationship here?
// have tried the other relationship options too (associate, attach, synch)
$room->photos()->save($photo);
// have also tried:
// $room->photos()->save(new Photo(array('URL' => 'urlTest.com')));
// get error "URL"
$room->save();
创建照片表:
public function up() {
Schema::create('photos', function($t) {
$t->increments('id');
// ... ...
// the Id is always 0 but the type is correct
$t->integer('imageable_id');
$t->string('imageable_type');
$t->softDeletes();
$t->timestamps();
});
}
我的班级,
照片:
class Photo extends Eloquent {
public function imageable() {
return $this->morphTo();
}
}
间:
class Room extends Eloquent {
public function photos() {
return $this->morphMany('Photo', 'imageable');
}
}
我看到了保留字(like Event)的问题,但这似乎不是问题。
答案 0 :(得分:8)
保存原件后,您需要运行$room->photos()->save($photo);
。原件尚不存在,因此没有要关联的ID。
也许它应该抛出异常,也许不是。就个人而言,我宁愿对我尖叫。
答案 1 :(得分:4)
使用此:
$ photo = $ room-> photos() - > create(array('URL'=>'thePhotoURL.extension'));