모든 관계를 포함하여 Eloquent 객체를 쉽게 복제 할 수있는 방법이 있습니까?
예를 들어 다음 테이블이있는 경우 :
users ( id, name, email )
roles ( id, name )
user_roles ( user_id, role_id )
에서 새로운 행을 생성 이외에 users
모든 열을 제외하고는 동일한 인으로 표 id
, 또한에서 새로운 행을 생성한다 user_roles
새로운 사용자에게 동일한 역할을 할당 테이블.
이 같은:
$user = User::find(1);
$new_user = $user->clone();
사용자 모델이있는 곳
class User extends Eloquent {
public function roles() {
return $this->hasMany('Role', 'user_roles');
}
}
답변
belongsToMany 관계에 대해 laravel 4.2에서 테스트되었습니다.
모델에있는 경우 :
//copy attributes
$new = $this->replicate();
//save model before you recreate relations (so it has an id)
$new->push();
//reset relations on EXISTING MODEL (this way you can control which ones will be loaded
$this->relations = [];
//load relations on EXISTING MODEL
$this->load('relation1','relation2');
//re-sync everything
foreach ($this->relations as $relationName => $values){
$new->{$relationName}()->sync($values);
}
답변
eloquent가 제공하는 복제 기능을 사용해 볼 수도 있습니다.
http://laravel.com/api/4.2/Illuminate/Database/Eloquent/Model.html#method_replicate
$user = User::find(1);
$new_user = $user->replicate();
$new_user->push();
답변
시도해 볼 수 있습니다 ( Object Cloning ) :
$user = User::find(1);
$new_user = clone $user;
clone
딥 복사가 아니기 때문에 사용 가능한 자식 개체가있는 경우 자식 개체가 복사되지 않으며이 경우 clone
수동으로 자식 개체를 복사해야합니다 . 예를 들면 :
$user = User::with('role')->find(1);
$new_user = clone $user; // copy the $user
$new_user->role = clone $user->role; // copy the $user->role
귀하의 경우 roles
에는 Role
객체 모음 이므로 모음의 각 항목 Role object
은 clone
.
또한 roles
사용하여 로드하지 않으면with
을 되지 않거나에서 사용할 수 없으며 $user
호출 할 때 $user->roles
해당 객체가 해당 호출 후 런타임에로드된다는 점을 알고 있어야합니다. 의 $user->roles
이 때까지, 그roles
로드되지 않습니다.
최신 정보:
이 대답은 Larave-4
이제 Laravel이 다음과 같은 replicate()
방법을 제공합니다 .
$user = User::find(1);
$newUser = $user->replicate();
// ...
답변
Laravel 5. hasMany 관계로 테스트되었습니다.
$model = User::find($id);
$model->load('invoices');
$newModel = $model->replicate();
$newModel->push();
foreach($model->getRelations() as $relation => $items){
foreach($items as $item){
unset($item->id);
$newModel->{$relation}()->create($item->toArray());
}
}
답변
다음은 게시 한대로 belongsToMany 대신 모든 hasMany 관계를 복제하는 @ sabrina-gelbart의 업데이트 된 솔루션 버전입니다.
//copy attributes from original model
$newRecord = $original->replicate();
// Reset any fields needed to connect to another parent, etc
$newRecord->some_id = $otherParent->id;
//save model before you recreate relations (so it has an id)
$newRecord->push();
//reset relations on EXISTING MODEL (this way you can control which ones will be loaded
$original->relations = [];
//load relations on EXISTING MODEL
$original->load('somerelationship', 'anotherrelationship');
//re-sync the child relationships
$relations = $original->getRelations();
foreach ($relations as $relation) {
foreach ($relation as $relationRecord) {
$newRelationship = $relationRecord->replicate();
$newRelationship->some_parent_id = $newRecord->id;
$newRelationship->push();
}
}
답변
이것은 laravel 5.8에 있으며 이전 버전에서는 시도하지 않았습니다.
//# this will clone $eloquent and asign all $eloquent->$withoutProperties = null
$cloned = $eloquent->cloneWithout(Array $withoutProperties)
편집, 바로 오늘 2019 년 4 월 7 일 laravel 5.8.10 출시
지금 복제를 사용할 수 있습니다
$post = Post::find(1);
$newPost = $post->replicate();
$newPost->save();
답변
다음 코드를 사용하여 $ user라는 컬렉션이있는 경우 모든 관계를 포함하여 이전 컬렉션과 동일한 새 컬렉션을 만듭니다.
$new_user = new \Illuminate\Database\Eloquent\Collection ( $user->all() );
이 코드는 laravel 5 용입니다.