私は最近zendを使用しています。私はこのViewScriptデコレータをフォーム用に発見し、従来のZendフォームデコレータを使用する代わりの最良の方法だと思いました。しかし、フォームの表示に問題があります。コードは機能しましたが、ビューから表示されません。
これが私のコードです:
形:
class Application_Form_Registration extends Zend_Form
{
public function init()
{
$username = new Zend_Form_Element_Text("username");
$submit = new Zend_Form_Element_Submit("submit");
$this->setAction("/test.php");
$this->setMethod("get");
$this->addElements(array($username, $submit));
$this->setElementDecorators(array(
array('ViewScript', array(
'viewScript'=>'test.phtml'
))
));
}
}
コントローラ:
class IndexController extends Zend_Controller_Action
{
public function init()
{
}
public function indexAction()
{
$form = new Application_Form_Registration();
$this->view->form = $form;
}
}
test.phtml(My ViewScript)
<form action="<?php $this->escape($this->form->getAction()); ?>">
<div style="width: 100px; height: 100px; background: blue;">
<?php echo $this->element->username; ?>
<?php echo $this->element->submit; ?>
</div>
</form>
そして私の見解(index.phtml)
<?php echo $this->form; ?>
私は何かを見逃したり、上記のコードを間違えたりしましたか?