0

ZendSkeletonApplication に基づいたアプリケーションを持っているので、モデル間の関係を作成したいので:

user            portal
id              id
firstName       name
lastName        url
........
portal_Id

ユーザーフォームの選択オプションにデータベース値を入力したい

<?php
namespace Register\Form;

use Zend\Captcha\AdapterInterface as CaptchaAdapter;
use Zend\Form\Form;
use Zend\Form\Element;


class UserForm extends Form
{
    protected $portalTable;

    public function __construct($name = null)
    {
        parent::__construct('user');
        $this->setAttribute('method', 'post');
        $this->setAttribute('class', 'form-horizontal');

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

        $this->add(array(
                'type' => 'Select',
                'name' => 'portal_id',
                'options' => array(
                        'label' => 'Portal',
                        'empty_option' => 'Seleccione un portal',
                        'value_options' => array(
                                '1' => 'portal 1',
                                '2' => 'portal 2',
                                '3' => 'portal 3',
                                //i want option from database with 
                        ),

                )
        ));

        $this->add(array(
                'name' => 'firstName',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'First Name',
                ),
        ));

        $this->add(array(
                'name' => 'lastName',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Last Name',
                ),
        ));
        $this->add(array(
                'name' => 'login',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Login',
                ),
        ));

        $this->add(array(
                'name' => 'password',
                'attributes' => array(
                        'type'  => 'password',
                ),
                'options' => array(
                        'label' => 'Password',
                ),
        ));

        $this->add(array(
                'name' => 'password_repeat',
                'attributes' => array(
                        'type'  => 'password',
                ),
                'options' => array(
                        'label' => 'password (repeat)',
                ),
        ));

        $this->add(array(
                'name' => 'email',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Email',
                ),
        ));

        $this->add(array(
                'type' => 'Zend\Form\Element\Csrf',
                'name' => 'csrf',
                'options' => array(
                        'csrf_options' => array(
                                'timeout' => 600
                        )
                )
        ));

        $this->add( array(
                'type' => 'Captcha',
                'name' => 'captcha',
                'options' => array(
                        'label' => 'Please verify you are human.',
                        'captcha' => array('class' => 'Dumb',
                        ),
                ),
        ));

        $this->add(array(
                'name' => 'submit',
                'attributes' => array(
                        'type'  => 'submit',
                        'value' => 'Go',
                        'id' => 'submitbutton',
                ),
        ));
    }
}

この部分では、データベースから選択して入力したい

$this->add(array(
                'type' => 'Select',
                'name' => 'portal_id',
                'options' => array(
                        'label' => 'Portal',
                        'empty_option' => 'Seleccione un portal',
                        'value_options' => array(
                                '1' => 'portal 1',
                                '2' => 'portal 2',
                                '3' => 'portal 3',
                                //i want option from database with 
                        ),

                )
        ));

私の英語でごめんなさい

4

2 に答える 2

1

このトピックについて、詳細なブログ「Zend \ Form \ Element \ SelectandDatabase-Values」を作成しました。基本的に、これはあなたがしなければならないことです:

基本的に、あなたがしなければならないのは、フォーム内のデータベースにデータを照会することだけです。このためには、DB-Adapterをフォーム内で使用できるようにする必要があります。これはDependency-Injectionによって実行されます。DBアダプターはrequiredフォームが正しく機能するためのものなので、Setter-Injectionをお勧めします。

あなたの内部でこれをgetServiceConfig()行います:

return array('factories' => array(
    'namespace-form-formname' => function($sm) {
        $dbA  = $sm->get('Zend\Db\Adapter\Adapter');
        $form = new \Namespace\Form\Formname($dbA);

        return $form;
    }
));

これZend\Db\Adapter\Adapterにより、フォームにが挿入されます。これは、他の構成でもすでに有効になっているはずです。次に、フォームコードを少し変更する必要があります。

public function __construct(\Zend\Db\Adapter\Adapter $dbA) {
    parent::__construct('form-name');

    // Do the DB-Query here. You got the DB-Adapter
    // http://zf2.readthedocs.org/en/latest/modules/zend.db.adapter.html
    $selectArray =  array(
        'key' => 'value',
        'key' => 'value',
        'key' => 'value',
    ); // obviously, this is just a fake-$selectArray demonstrating 
       // what the output of your Queries should be

    // Add your Form Elements here
    // use $selectArray as value_options of your desired select element
}

そしてそれは基本的にそれです。残念ながら、私はこれまで一緒Zend\Dbに仕事をしたことがないので、具体的な例を示すことはできませんが、これで始めることができると思います。

PS:コントローラーで、次のようなフォームを呼び出します。

$form = $this->getServiceLocator()->get('namespace-form-formname');
于 2013-03-20T16:42:37.793 に答える
0
Try:
// add code on controller
$arrPortalId = array();
$results = array('1' => 'portal 1', '2' => 'portal 2', '3' => 'portal 3',); // this part change your database value
foreach ($results as $key => $val) {
$arrPortalId[$key] = $va;
}
$dataParams['portalId'] = $arrPortalId;
$form = new UserForm($dataParams);

 <?php
namespace Register\Form;

use Zend\Captcha\AdapterInterface as CaptchaAdapter;
use Zend\Form\Form;
use Zend\Form\Element;


class UserForm extends Form
{
    protected $portalTable;

    public function __construct($params = array())
    {   $name = isset($params['name'])?$params['name']:'';
        parent::__construct('user');
        $this->setAttribute('method', 'post');
        $this->setAttribute('class', 'form-horizontal');

        $this->add(array(
                'name' => 'id',
                'attributes' => array(
                        'type'  => 'hidden',
                ),
        ));
    $portalId = (isset($params['portalId']) && count($params['portalId']) > 0)?$params['portalId']:array();
        $this->add(array(
                'type' => 'Select',
                'name' => 'portal_id',
                'options' => array(
                        'label' => 'Portal',
                        'empty_option' => 'Seleccione un portal',
                        'value_options' => $portalId,

                )
        ));

        $this->add(array(
                'name' => 'firstName',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'First Name',
                ),
        ));

        $this->add(array(
                'name' => 'lastName',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Last Name',
                ),
        ));
        $this->add(array(
                'name' => 'login',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Login',
                ),
        ));

        $this->add(array(
                'name' => 'password',
                'attributes' => array(
                        'type'  => 'password',
                ),
                'options' => array(
                        'label' => 'Password',
                ),
        ));

        $this->add(array(
                'name' => 'password_repeat',
                'attributes' => array(
                        'type'  => 'password',
                ),
                'options' => array(
                        'label' => 'password (repeat)',
                ),
        ));

        $this->add(array(
                'name' => 'email',
                'attributes' => array(
                        'type'  => 'text',
                ),
                'options' => array(
                        'label' => 'Email',
                ),
        ));

        $this->add(array(
                'type' => 'Zend\Form\Element\Csrf',
                'name' => 'csrf',
                'options' => array(
                        'csrf_options' => array(
                                'timeout' => 600
                        )
                )
        ));

        $this->add( array(
                'type' => 'Captcha',
                'name' => 'captcha',
                'options' => array(
                        'label' => 'Please verify you are human.',
                        'captcha' => array('class' => 'Dumb',
                        ),
                ),
        ));

        $this->add(array(
                'name' => 'submit',
                'attributes' => array(
                        'type'  => 'submit',
                        'value' => 'Go',
                        'id' => 'submitbutton',
                ),
        ));
    }
}
于 2015-10-24T10:40:11.413 に答える