我希望能够使用数组表示法向表单添加隐藏的表单字段。我可以用这样的HTML来做到这一点:
<input type="hidden" name="contacts[]" value="123" />
<input type="hidden" name="contacts[]" value="456" />
提交表单时,$_POST
数组将包含分组为数组的隐藏元素值:
array(
'contacts' => array(
0 => '123'
1 => '456'
)
)
我可以在表单中添加一个隐藏元素,并指定数组表示法,如下所示:
$form->addElement('hidden', 'contacts', array('isArray' => true));
现在,如果我用数组填充该元素,我希望它应该将值存储为数组,并将元素呈现为上面显示的HTML:
$form->populate($_POST);
然而,这不起作用。我正在使用的Zend Framework版本中可能存在错误。我这样做了吗?我该怎么办?我怎样才能达到上述结果?如果必须的话,我愿意创建自定义表单元素。请告诉我我需要做什么。
答案 0 :(得分:18)
您必须使用子表单来获取您寻找的结果。文档很有用,但你可以找到它here
使用我在那里找到的东西,我构建了以下形式L
<?php
class Form_Test extends Zend_Form {
public function init() {
$this->setMethod('post');
$this->setIsArray(true);
$this->setSubFormDecorators(array(
'FormElements',
'Fieldset'
));
$subForm = new Zend_Form(array('disableLoadDefaultDecorators' => true));
$subForm->setDecorators(array(
'FormElements',
));
$subForm->addElement('hidden', 'contacts', array(
'isArray' => true,
'value' => '237',
'decorators' => Array(
'ViewHelper',
),
));
$subForm2 = new Zend_Form(array('disableLoadDefaultDecorators' => true));
$subForm2->setDecorators(array(
'FormElements',
));
$subForm2->addElement('hidden', 'contacts', array(
'isArray' => true,
'value' => '456', 'decorators' => Array(
'ViewHelper',
),
));
$this->addSubForm($subForm, 'subform');
$this->addSubForm($subForm2, 'subform2');
$submit = new Zend_Form_Element_Submit('submit');
$submit->setValue('Submit');
$this->addElement('submit', 'submit');
}
}
Wich输出这个html:
<form enctype="application/x-www-form-urlencoded" method="post" action=""><dl class="zend_form">
<input type="hidden" name="contacts[]" value="237" id="contacts">
<input type="hidden" name="contacts[]" value="456" id="contacts">
<dt id="submit-label"> </dt><dd id="submit-element">
<input type="submit" name="submit" id="submit" value="submit"></dd></dl></form>
当提交时,帖子看起来像:
array(2) {
["contacts"] => array(2) {
[0] => string(3) "237"
[1] => string(3) "456"
}
["submit"] => string(6) "submit"
}
这就是你如何创造你寻求的那种形式。希望这可以帮助!如果你有问题发表评论!
如果你问我,它很狡猾。您基本上创建子表单但禁用表单装饰器,因此只需要输出元素。由于相同的contacts []元素具有不同的形式,因此zend不会覆盖它们并且它可以工作。但是啊..
编辑:稍微更改一下以删除标签和垃圾以隐藏输入。
答案 1 :(得分:16)
要使用数组表示法,您需要指定元素“属于”父数组:
$form->addElement('hidden', 'contact123', array('belongsTo' => 'contacts', 'value' => '123'));
$form->addElement('hidden', 'contact456', array('belongsTo' => 'contacts', 'value' => '456'));
答案 2 :(得分:8)
这确实似乎是Zend Framework中的一个错误 - 元素的value属性被正确设置为数组,但是当元素呈现时它被忽略 - 它只使用$this->view->escape($value)
来输出元素的html。
我通过为这些元素实现自定义帮助器来解决这个问题:
class My_View_Helper_HiddenArray extends Zend_View_Helper_FormHidden
{
public function hiddenArray($name, $value = null, array $attribs = null)
{
if (is_array($value)) {
$elementXHTML = '';
// do not give element an id due to the possibility of multiple values
if (isset($attribs) && is_array($attribs) && array_key_exists('id', $attribs)) {
unset($attribs['id']);
}
foreach ($value as $item) {
$elementXHTML .= $this->_hidden($name, $item, $attribs);
}
return $elementXHTML;
} else {
return $this->formHidden($name, $value, $attribs);
}
}
}
当使用下一种方式时:
$contacts = $form->createElement('hidden', 'contacts')
->setIsArray(true)
->setDecorators(array(
array('ViewHelper', array('helper' => 'HiddenArray')),
));
$form->addElement($contacts);
生成所需的输出。
在这里扩展Zend_View_Helper_FormHidden的原因只是为了能够在没有设置数组值的情况下调用默认行为(return parent::formHidden($name, $value, $attribs)
)。
希望这有助于某人:)
答案 3 :(得分:0)