我在子表单($ requestSubform)中有一个子表单($ fileUploadSubform)。我在父子窗体($ requestSubform)上调用了setElementsBelongTo(“requestRow [$ rowNumber]”)。

    $requestSubform= new Zend_Form_Subform();
    $requestSubform->setElementsBelongTo("requestRow[$rowNumber]");

    // add elements to $requestSubform

    // now create the file upload subform
    $fileUploadSubform= new Zend_Form_SubForm();
    $fileUploadSubform->addElement('file', 'fileName')
            ->setLabel('File');

    $fileUploadSubform->addElement('text', 'fileDesc')
            ->setLabel('File Description');

    $requestSubform->addSubForm($fileUploadSubform, 'fileUpload');

    $this->view->field = $requestSubform->__toString();

    // pass it as json via ajax back to javascript

呈现表单时,$ fileUploadSubform fileDesc元素的名称和ID如下
name="requestRow[1][requestRow][1][fileUpload][fileDesc]"
id="requestRow-1-fileUpload-fileDesc"

为什么在setElementsBelongTo()函数中设置的值重复两次?

先感谢您!

[更新08/13/2015]

作为临时的解决方法,我只是从子子窗体($ fileUploadSubform)而不是父子窗体($ requestSubform)调用setElementsBelongTo()

[更新08/17/2015]

我已经尝试了从http://zend-framework-community.634137.n4.nabble.com/Improved-array-support-for-Zend-Form-td667215.html获得的以下代码,该代码在该帖子中说,子表单elementsTobelong属于正常工作。
    $form = new Zend_Form();
    $form->setElementsBelongTo('foobar');

    $form->addElement('text', 'firstName')
    ->getElement('firstName')
    ->setLabel('First Name')
    ->setRequired(true);

    $form->addElement('text', 'lastName')
    ->getElement('lastName')
    ->setLabel('Last Name')
    ->setRequired(true);

    $subForm = new Zend_Form_SubForm();
    $subForm->setElementsBelongTo('foobar[baz]');
    $subForm->addElement('text', 'email')
    ->getElement('email')
    ->setLabel('Email Address');

    $subSubForm = new Zend_Form_SubForm();
    $subSubForm->setElementsBelongTo('foobar[baz][bat]');
    $subSubForm->addElement('checkbox', 'home')
    ->getElement('home')
    ->setLabel('Home address?');
    $subForm->addSubForm($subSubForm, 'subSub');

    $form->addSubForm($subForm, 'sub')
    ->addElement('submit', 'save', array('value' => 'submit'));
    print_r($form->__toString());

但是,这就是我为$ subForm和$ subFubForm元素获得的东西。
<input id="foobar-foobar-baz-email" type="text" value="" name="foobar[foobar][foobar][baz][email]">

<input id="foobar-foobar-baz-foobar-baz-bat-home" type="checkbox" value="1" name="foobar[foobar][foobar][baz][foobar][foobar][baz][foobar][baz][bat][home]">

[更新08/24/2015]

我终于找到了问题所在。

是这条线
$this->view->field = $additionalInfoSubform->__toString();

在此之前,有些元素没有显示,这就是我添加该行的原因。直到现在,我才明白那些没有显示的元素是那些没有设置ViewHelper装饰器的元素。因此,当我将ViewHelper设置为装饰器并删除上面的字段并调用子窗体的setElementsBelongTo()时,不必从该子窗体的层次结构的根开始,便可以正常工作。

最佳答案

我不熟悉zend-framework,但从外观上看,表单层次结构是隐式的。我的意思是,当您使用setElementsBelongTo()时,您不必声明完整的“路径”。将其视为文件夹结构,您只需在当前工作目录中命名子文件夹即可。

因此,当您声明:

$form = new Zend_Form();
$form->setElementsBelongTo('foo');

$subForm = new Zend_Form_SubForm();
$subForm->setElementsBelongTo('bar');
$subForm->addElement('text', 'email')

$form->addSubForm($subForm, 'sub');

这被解释为将email放入barbar放入foo,又名:
name="foo[bar][email]"

该文档说:



http://framework.zend.com/apidoc/1.9/Zend_Form/Zend_Form.html#setElementsBelongTo

还:



http://framework.zend.com/manual/1.12/en/zend.form.advanced.html

措词可能不清楚,但可能支持我的理论。因此,当使用$form->setElementsBelongTo('foo')时,添加到$form中的任何内容都将隐式地成为foo的元素,因此,在处理子元素的后续foo调用中,必须将setElementsBelongTo()排除在外。

关于php - Zend setElementsBelongTo()对子窗体元素的影响,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31956901/

10-12 05:29