0

加载页面后,选择字段使用 jquery 动态完成,但未在 $form->getData() 中加载发布数据。经过一番搜索,选项是添加一个隐藏字段并使用 javascript 添加值。我想知道是否存在另一种选择。

这是动作:

 $form = $this->createFormBuilder()
    ->add('country','file')
    ->add('admcod2','file')
    ->add('isocountry', 'choice', array('empty_value' => 'select country'))
    ->add('iso','hidden')
    ->getForm();

选择充满了jquery

$("#form_isocountry").jeoCountrySelect({
    callback: function () {
    $("#form_isocountry").removeAttr('disabled');
    }
});

//this add the value to a hidden field... 
$("#form_isocountry").change(function() {
    $("#form_iso").val($("#form_isocountry").val());
})

所以 symfony 无法识别动态选择中加载的选项。var_dump($form->getData()) 显示填充的隐藏字段,但不显示选择字段。

谢谢。

4

2 回答 2

1

我认为这choice不是此用例的正确字段类型,因为从表单字段的角度来看,可能的选择列表是空的。因此提交的值永远不会有效(除非为空)。

我可以建议您使用hidden作为此字段的类型或使用 type 为您的表单字段指定选项列表choice

于 2013-04-15T21:59:24.613 回答
0

我以ChoiceType这种方式使用了字段。我认为这是合乎逻辑的选择。它的主要问题(以及默认的EntityToIdTransformeror EntityChoiceList)是它为每个可能的选项提供了水合物以便选择一个,这在某些情况下是矫枉过正的。您可能需要编写自己的转换器来防止这种情况。我在页面加载后使用 AJAX 将数据加载到选择中。它使页面更小,加快页面处理时间,并让我更精确地缓存每组选项。

这是针对 Symfony 2.0 的。它工作正常,我们在一个页面上放置了一堆选择的字段,其中包含 4000 多个选项(尽管它仅在用户与小部件交互时创建选择的元素)。现在限制是浏览器内存。

联系实体类型

class ContactEntityType extends AbstractType {    
    public function __construct(EntityManager $em) {
        $this->em = $em;
    }

    public function buildForm(FormBuilder $builder, array $options) 
    {
        $repository = $this->em->getRepository('AcmeContactsBundle:Contact');
        $builder->prependClientTransformer(new ContactToIdTransformer($repository));
    }

    public function buildView(FormView $view, FormInterface $form)
    {
        $contact = $form->getData();

        if($contact instanceof \Acme\ContactsBundle\Entity\Contact) {
            $view->set('choices', array($contact->getId() => $contact->getName()));
        }
    }

    public function getParent(array $options) {
        return 'choice';
    }
}

ContactToIdTransformer

这是内置EntityToIdTransformer.

...
class ContactToIdTransformer implements DataTransformerInterface
{
    private $repository;

    public function __construct(EntityRepository $repository)
    {
        $this->repository = $repository;
    }

    public function transform($entity)
    {            
        if (null === $entity || '' === $entity) {
            return null;
        }

        if (!is_object($entity)) {
            throw new UnexpectedTypeException($entity, 'object');
        }

        if ($entity instanceof Collection) {
            throw new \InvalidArgumentException('Expected an object, but got a collection. Did you forget to pass "multiple=true" to an entity field?');
        }

        return $entity->getId();
    }

    public function reverseTransform($key)
    {
        if ('' === $key || null === $key) {
            return null;
        }

        if (!is_numeric($key)) {
            throw new UnexpectedTypeException($key, 'numeric');
        }

        if (!($entity = $this->repository->find($key))) {
            throw new TransformationFailedException(sprintf('The entity with key "%s" could not be found', $key));
        }
        return $entity;
    }
}
于 2013-04-16T08:12:00.173 回答