Zend_Form输出没有“/>”的输入元素标签

时间:2010-11-23 18:59:28

标签: zend-framework zend-form html-parsing decorator

使用Zend Framework创建此表单时,我希望输出使用doctype strict进行验证,但由于输入没有结束标记“/>”而失败。

如何通过验证?

表格:

require_once "Zend/Form.php";
require_once "Zend/Form/Element/Text.php";
require_once "Zend/Form/Element/Submit.php";

class Form_Test extends Zend_Form
{
    public function init()
    {
        // Email
        $email = new Zend_Form_Element_Text('email');
        $email->setRequired(true)
            ->addValidator('EmailAddress')
            ->setLabel("Email Address");

            // Submit
            $submit = new Zend_Form_Element_Submit('login');
            $submit->setLabel('Login');

            // Add element to form.
            $this->addElements(array(
                $email,
                $submit
            ));

            $this->setLegend('Login');
            $this->setElementDecorators(array(
                'ViewHelper',
                array('Label', array('separator' => '', 'requiredPrefix' => '* ')),
                array('HtmlTag', array('tag' => 'p', 'class' => 'form-element')),
            ));

            // Buttons do not need labels
            $submit->setDecorators(array(
                array('ViewHelper'),
                array('HtmlTag', array('tag' => 'p', 'class' => 'submit-button'))
            ));

            $this->getDecorator('HtmlTag')->setOption('tag', 'div');
            $this->getDecorator('HtmlTag')->setOption('class', 'form');
        }
    }

html输出:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr-CA" lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>Form test</title>
</head>
<body>
    <form enctype="application/x-www-form-urlencoded" action="" method="post">
    <div>
        <p class="form-element">
            <label for="email" class="required">* Email Address</label>
            <input type="text" name="email" id="email" value="">
        </p>
        <p class="submit-button">
            <input type="submit" name="login" id="login" value="Login">
        </p>
    </div>
    </form>
</body>
</html>

1 个答案:

答案 0 :(得分:3)

您必须将视图的doctype设置为需要在各个元素上使用自动关闭标记的内容。

在你的Bootstrap中你可以这样做:

protected function _initView() {
        $this->bootstrap('layout');
        $layout = $this->getResource('layout');
        $view = $layout->getView();
        $view->doctype('XHTML1_STRICT');
}

对于所有可接受的文档类型:http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial.doctype

此外,如果你正在使用它,你可能想要在你的布局中使用doctype标题,如果不是这样,那么它将保持秩序。