4

フォームがあり、bindrequest にフィールド タイプが必要です。メソッド getType は正常に動作しません。

$peticion = $this->getRequest();
        if ($peticion->getMethod() == 'POST') 
        {
            $form->bindRequest($peticion);

            if ($form->isValid()) {

             foreach($form as $key => $per)
                       $per->getType(); // i want the type of item [text,checkbox,etc] the method getType() dont work
 }}
4

1 に答える 1

10

これを使って:

foreach($form as $key => $per) {
    $per->getConfig()->getType()->getName();
}
于 2012-10-31T22:26:56.470 に答える