我正在使用 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;
}