我目前正在尝试添加一个克隆操作到我的CubeCrudController。
该操作应该重定向到Action::NEW视图,并具有一些预填充的值。
但是我不知道如何填写这张表格。
下面是我如何定义我的动作在CableCrudController中:
public function configureActions(Actions $actions): Actions
{
$cloneAction = Action::new('Clone', '')
->setIcon('fas fa-clone')
->linkToCrudAction('cloneAction');
return $actions->add(Crud::PAGE_INDEX, $cloneAction);
}
字符串
这就是我的cloneAction的样子,它当前重定向到Action::NEW,但没有预填充值:
public function cloneAction(AdminContext $context): RedirectResponse
{
$id = $context->getRequest()->query->get('entityId');
$entity = $this->getDoctrine()->getRepository(Employee::class)->find($id);
$clone = new Employee();
$entity->copyProperties($clone);
$clone->setFirstname('');
$clone->setLastname('');
$clone->setEmail('');
$routeBuilder = $this->get(CrudUrlGenerator::class);
$url = $routeBuilder->build([
'Employee_lastname' => 'test',
'Employee[teamMembershipts][]' => $clone->getTeamMemberships(),
])
->setController(EmployeeCrudController::class)
->setAction(Action::NEW)
->generateUrl()
;
return $this->redirect($url);
}
型
2条答案
按热度按时间cnwbcb6i1#
您可以在easyAdmin中使用选项数据设置字段的值。
字符串
如果字段有多个选项,则可以使用choices和choices_value。
xkrw2x1b2#
例如我是如何做到的:
字符串