簡體   English   中英

實體表單類型上的Symfony 2 Transformer

[英]Symfony 2 Transformer on entity form type

我正在嘗試在Symfony 2中創建一個新的表單類型。它基於實體類型,它在前端使用select2 ,我需要用戶能夠選擇現有實體或創建新實體。

我的想法是發送實體的id,如果用戶選擇現有實體,則讓它由默認實體類型轉換,或者如果用戶輸入新值,則發送類似“_new:輸入文本”的內容。 那么這個字符串應該由我自己的模型轉換器轉換為新的表單實體,它看起來應該是這樣的:

<?php
namespace Acme\MainBundle\Form\DataTransformer;

use Symfony\Component\Form\DataTransformerInterface;

class EmptyEntityTransformer
implements DataTransformerInterface
{
    private $entityName;
    public function __construct($entityName)
    {
        $this->entityName = $entityName;
    }
    public function transform($val)
    {
        return $val;
    }
    public function reverseTransform($val)
    {
        $ret = $val;
        if (substr($val, 0, 5) == '_new:') {
            $param = substr($val, 5);
            $ret = new $this->entityName($param);
        }
        return $ret;
    }
}

不幸的是,僅在選擇現有實體時才調用變換器。 當我輸入一個新值時,該字符串將在請求中發送,但根本不會調用變換器的reverseTransform方法。

我是Symfony的新手,所以我甚至不知道這種方法是否正確。 你有什么想法如何解決這個問題?

編輯:我的表單類型代碼是:

<?php

namespace Acme\MainBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Bundle\FrameworkBundle\Routing\Router;
use Acme\MainBundle\Form\DataTransformer\EmptyEntityTransformer;
use Symfony\Component\PropertyAccess\PropertyAccess;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\Form\FormEvent;
use Symfony\Component\Form\FormEvents;

class Select2EntityType
extends AbstractType
{
    protected $router;
    public function __construct(Router $router)
    {
        $this->router = $router;
    }
    /**
     * {@inheritdoc}
     */
    public function setDefaultOptions(OptionsResolverInterface $resolver)
    {
        parent::setDefaultOptions($resolver);
        $resolver->setDefaults(array(
            'placeholder' => null,
            'path' => false,
            'pathParams' => null,
            'allowNew' => false,
            'newClass' => false,
        ));
    }

    public function getParent()
    {
        return 'entity';
    }

    public function getName()
    {
        return 's2_entity';
    }

    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        if ($options['newClass']) {
            $transformer = new EmptyEntityTransformer($options['newClass']);
            $builder->addModelTransformer($transformer);
        }
    }

    public function buildView(FormView $view, FormInterface $form, array $options)
    {
        $field = $view->vars['name'];
        $parentData = $form->getParent()->getData();
        $opts = array();
        if (null !== $parentData) {
            $accessor = PropertyAccess::createPropertyAccessor();
            $val = $accessor->getValue($parentData, $field);
            if (is_object($val)) {
                $getter = 'get' . ucfirst($options['property']);
                $opts['selectedLabel'] = $val->$getter();
            }
            elseif ($choices = $options['choices']) {
                if (is_array($choices) && array_key_exists($val, $choices)) {
                    $opts['selectedLabel'] = $choices[$val];
                }
            }
        }

        $jsOpts = array('placeholder');

        foreach ($jsOpts as $jsOpt) {
            if (!empty($options[$jsOpt])) {
                $opts[$jsOpt] = $options[$jsOpt];
            }
        }
        $view->vars['allowNew'] = !empty($options['allowNew']);
        $opts['allowClear'] = !$options['required'];
        if ($options['path']) {
            $ajax = array();
            if (!$options['path']) {
                throw new \RuntimeException('You must define path option to use ajax');
            }
            $ajax['url'] = $this->router->generate($options['path'], array_merge($options['pathParams'], array(
                'fieldName' => $options['property'],
            )));
            $ajax['quietMillis'] = 250;
            $opts['ajax'] = $ajax;
        }
        $view->vars['options'] = $opts;
    }
}

然后我創建這種表單類型:

class EditType
extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('masterProject', 's2_entity', array(
                'label' => 'Label',
                'class' => 'MyBundle:MyEntity',
                'property' => 'name',
                'path' => 'my_route',
                'pathParams' => array('entityName' => 'name'),
                'allowNew' => true,
                'newClass' => '\\...\\MyEntity',
            ))

...

謝謝你的建議

我想我找到了答案,但我不確定這是否是正確的解決方案。 當我試圖理解EntityType如何工作時,我注意到它使用EntityChoiceList來檢索可用選項的列表,並且在這個類中有一個getChoicesForValues方法,當id轉換為實體時調用該方法。 所以我實現了自己的ChoiceList,它將我自己的類添加到返回數組的末尾:

<?php
namespace Acme\MainBundle\Form\ChoiceList;

use Symfony\Bridge\Doctrine\Form\ChoiceList\EntityChoiceList;
use Doctrine\Common\Persistence\ObjectManager;
use Symfony\Component\PropertyAccess\PropertyAccessorInterface;


class EmptyEntityChoiceList
extends EntityChoiceList
{
    private $newClassName = null;
    public function __construct(ObjectManager $manager, $class, $labelPath = null, EntityLoaderInterface $entityLoader = null, $entities = null,  array $preferredEntities = array(), $groupPath = null, PropertyAccessorInterface $propertyAccessor = null, $newClassName = null)
    {
        parent::__construct($manager, $class, $labelPath, $entityLoader, $entities, $preferredEntities, $groupPath, $propertyAccessor);
        $this->newClassName = $newClassName;
    }
    public function getChoicesForValues(array $values)
    {
        $ret = parent::getChoicesForValues($values);
        foreach ($values as $value) {
            if (is_string($value) && substr($value, 0, 5) == '_new:') {
                $val = substr($value, 5);
                if ($this->newClassName) {
                    $val = new $this->newClassName($val);
                }
                $ret[] = $val;
            }
        }
        return $ret;
    }
}

將此ChoiceList注冊到表單類型有點復雜,因為原始選項列表的類名在EnttrType擴展的DoctrineType中是硬編碼的,但是如果您查看此類,則不難理解如何執行此操作。

未調用DataTransformer的原因可能是EntityType能夠返回結果數組,並且轉換將應用於此集合的每個項目。 如果結果數組為空,則顯然沒有項目可以調用變換器。

我和你的問題完全相同,我選擇使用一個仍然是DataTransformerFormEvent

我們的想法是在提交之前切換字段類型(實體一)。

public function preSubmit(FormEvent $event)
{
    $data = $event->getData();
    $form = $event->getForm();
    if (substr($data['project'], 0, 5) == '_new:') {
        $form->add('project', ProjectCreateByNameType::class, $options);
    }
}

如果需要,這將在提交之前用新的自定義字段替換project字段。

ProjectCreateByNameType可以擴展TextField並且必須添加DataTransformer

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM