0

嗨,我是 zend 框架的新手 基本上我想从数据库中填充公司名称列表。实际上我已经做到了,但我也想在选项框中填充它的 id

例子

选择选项值='1' > tcs 选项

选择

这是我的代码

Application_Form_Clientcompanyform extends Zend_Form


$company_list = new Application_Model_Clientcompany; 
        $showlist  = $company_list->companyNameList();

        $list=array();
        $id=array();
                    foreach($showlist as $key => $value)
                         {
                             $list[]=$value['companyName']; 
                             $id[]=$value['id'];
                         }


$this->addElement('select', 'companyName', array(           

            'required'   => true,
            'filters'    => array('StringTrim'),
            'style'    => array('width:103px'),

            'multiOptions' => $list,
            'decorators'=>Array(
            'ViewHelper','Errors'

但现在我想在数据库中选择框宽度 $id 中的选项中设置值

4

1 回答 1

0
$companyName = new Zend_Form_Element_Select('companyName');
$companyName->setRequired(true);
$companyName->addFilter('StringTrim');    
    $company_list = new Application_Model_Clientcompany; 
    $showlist  = $company_list->companyNameList();
    //add selections to multioption, assumes object...change notation if using array
    foreach($showlist as $company) {
        $name = ucfirst($company->name);
        $companyName->addMultiOption($company->id, $name);
    }
$this->addElement($companyName);

我知道我改变了语法风格,我只是发现这样更容易保持直截了当。

您可能需要的所有其他内容都在http://framework.zend.com/manual/1.12/en/zend.form.html中,习惯于使用框架的参考API ,它们真的很有帮助。

于 2013-05-20T07:40:44.117 回答