如何使用实体表单字段类型和Symfony2中的JUI自动完成?

时间:2011-10-08 17:25:44

标签: php forms autocomplete doctrine-orm symfony

我的表单中有entity字段类型,使用户可以选择相关的Client实体。它在开发环境中运行良好,但在生产环境中会有数千个客户端可供选择,HTML表单字段类型将无法处理。

我写过动作巫婆使用Zend Lucene并以JSON格式返回JUI自动填充的客户端,如何使用entity表单字段类型启用此自动填充?

1 个答案:

答案 0 :(得分:1)

这不是完全您想要的答案,因为我选择了字段,这是一种解决方法。这是一个表单,您可以选择接收方发送消息(=广告系列):

在FormType中:

    public function __construct(EntityManager $em, Campaign $campaign) {
        $this->campaign = $campaign;
        $this->em = $em;
    }

    public function buildForm(FormBuilder $builder, array $options)
    {
        $contactChoices = array('0'=>'');
        if($this->campaign && $this->campaign->getRecipientContacts()){
            foreach($this->campaign->getRecipientContacts() as $contact){
                $contactChoices[$contact->getHash()] = $contact->getName();
            }
        }
        $builder->add('subject')
                ->add('message','textarea')
                ->add('recipientContacts','choice', array(
                        'required' => false,
                        'multiple' => true, // manage multiple choices
                        'choices' => $contactChoices,
                        'property_path' => false,
                    ))
                ...

然后在控制器中:检索已发布的联系人并将其分配给广告系列:

       if($this->getRequest()->getMethod() == 'POST'){
            $campaign->removeRecipientContacts();
            $data = $this->getRequest()->get('campaignForm');

            if(isset($data['recipientContacts'])){
                foreach($data['recipientContacts'] as $hash){
                   $contact = $this->getRepo()->getContactByHash($hash);
                   $campaign->addRecipientContact($contact);
                }
            }
        }

这允许您在前端使用任何JS小部件(自动完成,...)。只需在您选择的字段中添加选项即可种类:

function addContact(hash,name){
     $('#campaignContactChoiceSelectField').append('<option value="'+hash+'">'+name+'</option>');
}