在 EasyAdmin 3 中使用预填充值重定向到新操作

Posted

技术标签:

【中文标题】在 EasyAdmin 3 中使用预填充值重定向到新操作【英文标题】:Redirect to NEW Action with prefilled values in EasyAdmin 3 【发布时间】:2021-05-09 14:39:02 【问题描述】:

我目前正在尝试将克隆操作添加到我的 EmployeeCrudController。 该操作应重定向到 Action::NEW 视图并具有一些预填充值。 但是我不知道如何预填这个表格。

这是我如何在 EmployeeCrudController 中定义我的操作的地方:

  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);
 

【问题讨论】:

您好,您找到解决方案了吗?我也有同样的问题 @eronn 不,我刚回到easyadmin 1 【参考方案1】:

您可以使用选项data 在easyAdmin 中设置字段的值。

$builder->add('Employee_lastname', null, ['data' => $clone->getTeamMemberships()]);

如果您的字段有多个选项,您可以使用choices 和choices_value。

【讨论】:

这实际上在这种情况下不起作用。您在此处无权访问 $builder。

以上是关于在 EasyAdmin 3 中使用预填充值重定向到新操作的主要内容,如果未能解决你的问题,请参考以下文章

在 laravel 中使用紧凑值重定向

React Page 在根据 redux 值重定向之前闪烁

EasyAdmin 3 - 为控制器中的重定向生成 URL(无杂物)

PHP - 如何使用cookie中的值重定向到个人资料页面

Vue路由器和vuex基于值重定向的问题

在 Azure OIDC 注销后,应该将啥内容安全策略标头值重定向回应用程序