gpt4 book ai didi

doctrine - 如何从 Zend Forms 中正确地补充和提取 Doctrine Entity

转载 作者:行者123 更新时间:2023-12-03 11:20:47 26 4
gpt4 key购买 nike

我刚开始使用 Doctrine,并且正在重写一些代码以在某些形式中使用 Doctrine 实体。

我有一个实体业务,它与地址、员工、电子邮件等有一些 1:n 的关系。设置非常基本并且工作正常。

为了添加新业务,我为我的每个实体创建了一个 BusinessForm 和 Fieldsets。这里是表单的构造函数:

public function __construct($scenario='create', $entityManager = null) {
parent::__construct('business_form');
$this->scenario = $scenario;
$this->entityManager = $entityManager;
$this->setAttribute('method', 'post');

$businessFieldset = new BusinessFieldset($this->entityManager);
$businessFieldset->setUseAsBaseFieldset(true);
$this->add($businessFieldset);

$hydrator = new DoctrineHydrator($this->entityManager, new Business());
$this->setHydrator($hydrator);
$this->addElements();
$this->addInputFilter();
}

addElements 只是添加了一个提交和 CSRF 输入。

这里是 Controller Action :
public function addAction(){
$form = new BusinessForm('create', $this->entityManager);
if ($this->getRequest()->isPost()) {
$data = $this->params()->fromPost();
$form->setData($data);
if($form->isValid()) {
// save Object
return $this->redirect()->toRoute('subcontractor', ['action'=>'index']);
}
}
return new ViewModel([
'form' => $form
]);
}

表单验证,我可以使用 $form->getData() 从表单中获取数据.但我无法弄清楚如何使用表单的 Hydrator 从表单中获取填充的对象。当我使用 setObject(new Business())在 Controller 启动时, $form->isValid() 出现错误在跑 :
Zend\Hydrator\ArraySerializable::extract expects the provided object to implement getArrayCopy()

是不是叫错了 Hydrator ?

如果我不 setObject()而是使用 $form->bind(new Business())验证后,我从 $form->getObject() 得到一个空对象.如果我得到数据并像这样使用表单的 Hydrator hydration 一个新对象: $form->getHydrator()->hydrate($data['business], new Business())我确实得到了我期待的填充对象。 (业务是基本字段集的名称)

所以我的问题是,我如何仅使用 $form->getObject() 获得最后一次通话的结果验证后?

[编辑]

问题似乎与在业务字段集中用作子字段集的字段集集合有关。如果我在不使用集合的情况下验证表单,我会从 $form->getData() 获得预期的业务对象

这是我如何添加集合的示例(在业务字段集中):
$this->add([
'name' => 'emails',
'type' => 'Zend\Form\Element\Collection',
'attributes' => [
'id' => 'business_emails',
],
'options' => [
'label' => 'Emails',
'count' => 1,
'should_create_template' => true,
'template_placeholder' => '__index__',
'allow_add' => true,
'target_element' => [
'type' => 'LwsSubcontractor\Form\EmailFieldset',
],
'target_class' => 'LwsSubcontractor\Entity\Email'
],
]);

这里是EmailFieldset:
public function __construct() {
parent::__construct('email');
$this->setObject(new Email());
$this->addElements();
}

protected function addElements() {
$this->add([
'name' => 'email',
'type' => 'Zend\Form\Element\Email',
'attributes' => [
'placeholder' => 'E-Mail (z.B. email@muster-email.de)',
'class' => 'form-control',
'required' => true,
'size' => 50,
],
'options' => [
'label' => 'Email',
],
]);

}

}

如果使用集合,我会从上面收到错误消息。因此,在为每个 Fieldset 添加 Hydrator 后,我很好。

尽管我的印象是为表单设置 Hydrator 会导致使用的字段集继承该 Hydrator 。或者这是因为将字段集用作集合而不是直接使用?

最佳答案

您必须将 Hydrator 添加到所有字段集中,我个人使用 DoctrineModule\Stdlib\Hydrator\DoctrineObject对于 Doctrine 实体。

我也会考虑使用 init()初始化表单和添加元素的方法,然后通过 FormElementManager 注册和检索表单和字段集,$serviceLocator->get('FormElementManager')->get(yourFieldsetorForm::class) .然后可以将表单注入(inject)到您的 Controller 中。

我希望这有帮助。

关于doctrine - 如何从 Zend Forms 中正确地补充和提取 Doctrine Entity,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45996348/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com