Zf2 列出实体原则 2 中的要素

问题描述 投票:0回答:3

我有一个简单的问题, 我如何创建表单列表元素,例如网格或这样:

[x] name | image | [button]
[ ] name | image | [button]
[x] name | image | [button]

<table>
<tr><th>checkbox</th><th>name</th><th>action</th></tr>
<tr><td><input type="checkbox"></td><td>name</td><td><button>OK</td></tr>
<tr><td><input type="checkbox"></td><td>name</td><td><button>OK</td></tr>
<tr><td><input type="checkbox"></td><td>name</td><td><button>OK</td></tr>
</table>

//列出数据库中的实体,数组(对象,对象,对象) //对象=应用程序\实体\区域

$areas = $this->getObjectManager()->getRepository('Application\Entity\Area')->findAll();

我在表单 Zend\Form\Element\Collection 中使用,但我不知道如何从数据库填充集合日期,所以我有清晰的表单。

我应该正确做,用什么?

php doctrine-orm zend-framework2 zend-form2
3个回答
0
投票

从 Doctrine 中你已经得到了一个可迭代的数据类型(数组)。所以你只需要在你的视图中迭代它:

...
<?php foreach($this->data as $area): ?>
//your table row markup for a single entity
<?php endforeach; ?>
...

0
投票

免责声明我问过类似的问题,但没有答案。所以我也很想知道“Zend”方式,或者是否有人能够提出替代方案。

下面的方法似乎对我有用。

ListForm.php

将集合添加到您的“列表”表单中。

/** The collection that holds each element **/
$name = $this->getCollectionName();
$collectionElement = new \Zend\Form\Element\Collection($name);
$collectionElement->setOptions(array(
  'count' => 0,
  'should_create_template' => false,
  'allow_add' => true      
));
$this->add($collectionElement);

这个集合将容纳集合元素(

Zend\Form\Element\Checkbox
)

/** The element that should be added for each item **/
$targetElement = new \Zend\Form\Element\Checkbox('id');
$targetElement->setOptions(array(
  'use_hidden_element' => false,
  'checked_value'      => 1,
));
$collectionElement->setTargetElement($targetElement);

然后我添加了一些方法来允许我将

ArrayCollecion
传递到表单。对于我的集合中的每个实体,我将创建一个新的
$targetElement
;将其检查值设置为实体的 id。

/**
 * addItems
 *
 * Add multiple items to the collection
 * 
 * @param Doctrine\Common\Collections\Collection $items Items to add to the
 * collection
 */
public function addItems(Collection $items)
{
  foreach($items as $item) {
    $this->addItem($item);
  }
  return $this;
}

/**
 * addItem
 *
 * Add a sigle collection item
 * 
 * @param EntityInterface $entity The entity to add to the
 * element collection
 */
public function addItem(EntityInterface $item)
{
  $element = $this->createNewItem($item->getId());
  $this->get($this->getCollectionName())->add($element);
} 

/**
 * createNewItem
 *
 * Create a new collection item
 * 
 * @param  EntityInterface $entity The entity to create
 * @return \Zend\Form\ElementInterface
 */
protected function createNewItem($id, array $options = array())
{
  $element = clone $this->targetElement;
  $element->setOptions(array_merge($element->getOptions(), $options));
  $element->setCheckedValue($id);

  return $element;
}

然后需要的就是将集合从控制器操作内传递到表单。

一些控制器

public function listAction()
{
 //....
 $users = $objectManager->getRepository('user')->findBy(array('foo' => 'bar'));
 $form = $this->getServiceLocator()->get('my_list_form');
 $form->addItems($users);
 //...
}

0
投票

您可以使用数据库中的学说填充多选复选框,使用

DoctrineModule\Form\Element\ObjectMultiCheckbox
,如本页所示:

https://github.com/doctrine/DoctrineModule/blob/master/docs/form-element.md

只需将实体管理器传递给表单,然后按照示例中的操作即可创建 ObjectMultiCheckbox 表单元素...

或其他更好的 -moro 自动化工作方法,如果您想使用集合,您需要对区域进行正确的映射(@orm\OneToMany 和 @orm\ManyToOne)...并在形式如下...:

http://framework.zend.com/manual/2.2/en/modules/zend.form.collections.html

并向其他实体添加方法以添加和删除区域,如下所示:

public function addArea(Collection $areas)
{
    foreach ($areas as $area) {
        $area->setOtherEntity($this);
        $this->areas->add($area);
    }
}

public function removeAreas(Collection $areas)
{
    foreach ($areas as $area) {
        $area->setOtherEntity(null);
        $this->areas->removeElement($area);
    }
}

如果您使用水合作用,当您自动选择它们时,这些值将被添加和删除...

© www.soinside.com 2019 - 2024. All rights reserved.