0

我对 ZF2 中的表单元素选择有疑问。我创建了查询学说 2 并有良好的结果对象列表。

$langs = $this->getEntityManager()->getRepository('Application\Entity\Langs')->findAll();

并创建简单的形式:

class Coupon extends Form
{
    protected $objectManager;

    public function __construct($name = null)
    {        
        parent::__construct('coupon');

        $this->setAttribute('method', 'post');

        $this
             ->setAttribute('method', 'post')
             ->setHydrator(new ClassMethodsHydrator(false))
         ;

    $this->add(array(
            'name' => 'id',
            'attributes' => array(
                'type'  => 'hidden',
            ),
        ));
     }

   $this->add(array(
         'type' => 'Zend\Form\Element\Select',
         'name' => 'language',
         'attributes' => array(
             'class' => 'form-control',
         ),
         'options' => array(
                 'label' => 'default.form.message',
                 'empty_option'    => '--- choose formElementName ---',
                 'value_options' => array(
                         '0' => 'French',
                         '1' => 'English',
                         '2' => 'Japanese',
                         '3' => 'Chinese',
                 ),
         )
    ));

}

如何将结果($langs)转换为 value_options 的数组 - zend 元素选择?我应该为此使用什么?

4

1 回答 1

0

我解决它。

我创造

public function getFormElementConfig()
    {

        return array(
            'invokables' => array(
                'Coupon' => 'Application\Form\Langs',
            ),
            'initializers' => array(
                'ObjectManagerInitializer' => function ($element, $formElements) {
                    if ($element instanceof ObjectManagerAwareInterface) {

                        $services      = $formElements->getServiceLocator();
                        $entityManager = $services->get('Doctrine\ORM\EntityManager');
                        $element->setObjectManager($entityManager);
                    }
                },
            ),
        );

并在表单中添加init:

public function init()
    {
        parent::init();

        $this->add(
            array(
                'type' => 'DoctrineModule\Form\Element\ObjectSelect',
                'name' => 'messages',
                'options' => array(
                    'object_manager' => $this->getObjectManager(),
                    'target_class'   => 'Application\Entity\Langs',
                    'property'       => 'title',
                ),
            )
        );
    }

它有效:) 谢谢山姆。

于 2013-11-07T09:21:54.217 回答