为了创建一个文本输入框,我在 zend framework2 中使用了以下代码
use Zend\Form\Form;
class Loginform extends Form
{
public function __construct()
{
$this->add(array(
'name' => 'usernames',
'attributes' => array(
'id' => 'usernames',
'type' => 'text',
),
'options' => array(
'label' => 'User Name',
),
));
}
}
我可以使用在控制器操作中填充值
$form = new Loginform();
$form->get('usernames')->setAttribute('value', 'user 1');
知道如何为 zf2 中的选择/下拉框做同样的事情吗?
参考:zend 框架 2 文档