使用Zend Framework接受来自动态创建的表单元素的值

时间:2012-03-22 22:58:29

标签: php zend-framework zend-form zend-db

如果这个问题存在于其他地方请赐教,我的搜索没有运气。

困境:

我正在建立一个界面,让我的妻子上传/管理她网站上的照片。 为了简化流程 - 我构建了一个组件来复制“添加照片”表单行,其中她可以一次添加多个图像,如下所示:

标记:(由Zend_Form生成)

<section id="add-photos">
    <form enctype="multipart/form-data" action="/admin/photo/add-photos" method="post">
        <dl class="zend_form">
            <dt id="AddPhotos-label">&#160;</dt>
                <dd id="AddPhotos-element">
                    <fieldset id="fieldset-AddPhotos">
                       <dl> <-- This element is what get's duplicated on the 'add 
                                another image' button -->
                         <input type="hidden" name="id" value="" id="id" />
                         <dt id="image_name-label">
                             <label for="image_name" class="required">Image Name</label>
                         </dt>   
                         <dd id="image_name-element">
                             <input type="text" name="image_name" id="image_name"    
                                 value="" />
                         </dd>
                         <dt id="album_name-label">
                             <label for="album_name" class="required">Album Name</label> 
                         </dt>
                         <dd id="album_name-element">
                              <input type="text" name="album_name" id="album_name" 
                                  value="" />
                         </dd>
                         <dt id="category_name-label">
                              <label for="category_name" class="required">Category 
                                   Name</label>
                         </dt>
                         <dd id="category_name-element">
                               <input type="text" name="category_name"  
                                       id="category_name" value="" />
                         </dd>
                         <dt id="image-label">
                               <label for="image" class="optional">Image:</label>
                         </dt>
                         <dd>
                             <input type="hidden" name="MAX_FILE_SIZE" value="134217728" 
                                  id="MAX_FILE_SIZE" />
                             <input type="file" name="image" id="image" />
                         </dd>
                         <dt id="thumbnail-label">
                             <label for="thumbnail" class="optional">Is Thumbnail?
                             </label>       
                         </dt>
                         <dd id="thumbnail-element">
                             <input type="hidden" name="thumbnail" value="0" />
                             <input type="checkbox" name="thumbnail" id="thumbnail" 
                                 value="1" />
                         </dd>
                         <dt id="AddAnotherPhoto-label">&#160;</dt>
                         <dd id="AddAnotherPhoto-element">
                             <button name="AddAnotherPhoto" id="AddAnotherPhoto"  
                                 type="button">Add Another Photo</button>
                         </dd>
                     </dl>
                 </fieldset>
             </dd>
            <dt id="submit-label">&#160;</dt>
                <dd id="submit-element">
                    <input type="submit" name="submit" id="submit" value="Submit" />
                </dd>
            </dl>
        </form>     
</section>

如果用户点击“AddAnotherPhoto”按钮,则会在<dl>内添加另一个<fieldset>。结构将成为:

<fieldset>
    <dl></dl>
    <dl></dl>
</fieldset>

但是,正如您对控制器操作所期望的那样:

public function addPhotosAction()
{
    $form = new Form_AddPhoto();
    if($this->_request->isPost()){
        if($form->isValid($_POST)){
            $photo_model = new Admin_Model_Photo();

            $photo_model->addPhoto(
                $form->getValue('image_name'),
                $form->getValue('album_name'),
                $form->getValue('category_name'),
                $form->getValue('thumbnail')
            );
        }
    }
    $form->setAction('/admin/photo/add-photos');
    $this->view->form = $form;
}   

它只捕获一组元素。所以我的问题是:如何以分组方式捕获所有传入元素?有没有办法迭代请求对象并在照片模型中为每个集调用addPhoto方法?

我尝试通过$.ajax()在前端执行此操作,其中迭代很容易执行,但数据不太容易传递给操作。

让我知道是否有更好的方法来解决这个问题 - 或许还有其他例子可以解决这个问题。

谢谢, 肯

我很难解释这一点,所以如果你需要澄清的话,请告诉我。

1 个答案:

答案 0 :(得分:1)

如果我在哪里你会为每个addphoto部分创建一个子表单。 然后如果你复制它,请确保你改变它将被分组的id。

使用此子表单,您可以使用以下函数

$form->setElementsBelongTo(<uniqid>);

这使得它对uniqid中的元素进行分组,因此您将获得所有帖子结果。

因此,您的元素将具有名称类似于名称=&#34; test [image_name]&#34;

在您的控制器中,您可以使用$ form-&gt; getValues()获取表单的所有值,然后使用foreach循环循环该数据