14

我正在使用 Zend Framework 2 开发应用程序,并使用FormRow帮助器在表单中呈现标签、输入和错误(如果存在)。

//within the view
echo $this->formRow($form->get('Name'));

当用户在未填写所需输入文本字段的情况下提交表单时,FormRow 会呈现以下错误消息:

<label>
    <span>Name: </span>
    <input class="input-error" type="text" value="" placeholder="Insert Name Here" name="Name">
</label>
<ul>
    <li>Value is required and can't be empty</li>
</ul>

如何为li标签设置一个类以在之后对其进行样式设置?

我知道我可以通过...回显带有所需类属性的 formElementErrors

<?php echo $this->formElementErrors($form->get("Name"), array('class' => "valuerequired", 'message' => "errortestmessage")); ?>

..但是 FormRow 仍然会在没有类的情况下呈现错误消息。

仅供参考,我以这种方式设置实体:

public function getInputFilter()
    {
        if (!$this->inputFilter) {
            $inputFilter = new InputFilter();

            $factory = new InputFactory();

            $inputFilter->add($factory->createInput(array(
                'name'     => 'Name',
                'required' => true,
                'filters'  => array(
                    array('name' => 'StripTags'),
                    array('name' => 'StringTrim'),
                ),
                'validators' => array(
                    array(
                        'name'      => 'StringLength',
                        'options' => array(
                            'encoding' => 'UTF-8',
                            'min'      => 1,
                            'max'      => 100,
                        ),
                    ),
                ),
           )));

            $this->inputFilter = $inputFilter;
        }
        return $this->inputFilter;
    }
4

6 回答 6

23

formElementErrors 的代码

基本上你可以这样做:

$this->formElementErrors($elem)
     ->setMessageOpenFormat('<ul%s><li class="some-class">')
     ->setMessageSeparatorString('</li><li class="some-class">');

但这很不方便......

更好的解决方案是通过您自己的类扩展 Zend\Form\View\Helper\FormElementErrors,然后将视图助手 formElementErrors 注册到您的类。所以基本上你会有这样的东西:

namespace Mymodule\Form\View\Helper;

use Zend\Form\View\Helper\FormElementErrors as OriginalFormElementErrors;

class FormElementErrors extends OriginalFormElementErrors  
{
    protected $messageCloseString     = '</li></ul>';
    protected $messageOpenFormat      = '<ul%s><li class="some-class">';
    protected $messageSeparatorString = '</li><li class="some-class">';
}

最后一件事就是用这个新类注册视图助手。为此,您在 Modules Module.php 中提供以下代码

public function getViewHelperConfig()
{
    return array(
        'invokables' => array(
            'formelementerrors' => 'Mymodule\Form\View\Helper\FormElementErrors'
        ),
    );
}

displaimer:此代码未经测试,如果有一些错误,请告诉我,但我认为这应该很好。

于 2012-12-07T15:48:02.663 回答
11

好的,我自己的问题的解决方案就在我面前,而不是使用:

//within the view
echo $this->formRow($form->get('Name'));

我分别调用了表单的每个元素:

    //within the view
    echo $this->formLabel($form->get('Name'));
    echo $this->formInput($form->get('Name'));
    echo $this->formElementErrors($form->get("Name"), array('class' => "some_class", 'message' => "errormessage")); 

不知道这是否是最有效的方法,如果您不这么认为,请留言。

于 2012-12-12T15:58:59.080 回答
2

FormRow 检查“form_element_errors”插件是否注册。如果是这样,则默认使用它来显示错误消息。

所以山姆的例子工作。您应该重新定义标准插件并告知 mvc。

我已经在 module.config.php 中完成了

'view_helpers' => array(
'invokables' => array(
    'formElementErrors'=> 'MyModule\View\Helper\FormElementErrors',

和 FormRow 如我所愿开始显示错误:)

于 2013-08-18T09:25:12.167 回答
1

作为您的问题,请尝试

改变

//within the view
echo $this->formRow($form->get('Name'));

//within the view
echo $this->formRow($form->get('Name'),null,false);
// Note: add more 2 last parameters, false- for $renderErrors => will NOT render Errors Message. 
//Look original function in helper/formrow.php: function __invoke(ElementInterface $element = null, $labelPosition = null, $renderErrors = null, $partial = null)

将错误消息呈现为您的功能

echo $this->formElementErrors($form->get('name'), array('class' => 'your-class-here'));
于 2014-01-19T12:19:07.720 回答
0

来自 ZF2 的文档。这是链接: http: //framework.zend.com/manual/2.0/en/modules/zend.form.view.helpers.html#formelementerrors

echo $this->formElementErrors($element, array('class' => 'help-inline'));
// <ul class="help-inline"><li>Value is required and can&#039;t be empty</li></ul>
于 2013-12-11T14:46:03.393 回答
0

echo $this->formElementErrors($form, array('class' => "error-messages"));习惯在一个地方显示所有错误消息:

echo $this->formElementErrors($form, array('class' => "error-messages"));// Print all error messagess

echo $this->formLabel($form->get('Name'));
echo $this->formInput($form->get('Name'));

echo $this->formLabel($form->get('Name2'));
echo $this->formInput($form->get('Name2'));
于 2015-12-10T14:46:33.023 回答