Symfony形式ManyToOne OneToMany

时间:2015-11-25 13:13:31

标签: symfony doctrine-orm entity-relationship symfony-forms zikula

我有三个实体,Block,BlockPlacement,BlockPosition:

class BlockEntity
{
    private $bid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="block",
     *     cascade={"remove"})
     */
    private $placements;
}

class BlockPlacementEntity
{
    /**
     * The id of the block postion
     *
     * @ORM\Id
     * @ORM\ManyToOne(targetEntity="BlockPositionEntity", inversedBy="placements")
     * @ORM\JoinColumn(name="pid", referencedColumnName="pid", nullable=false)
     */
    private $position;

    /**
     * The id of the block
     *
     * @var BlockEntity
     * @ORM\Id
     * @ORM\ManyToOne(targetEntity="BlockEntity", inversedBy="placements")
     * @ORM\JoinColumn(name="bid", referencedColumnName="bid", nullable=false)
     */
    private $block;

    private $sortorder;
}

class BlockPositionEntity
{
    private $pid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="position",
     *     cascade={"remove"})
     * @ORM\OrderBy({"sortorder" = "ASC"})
     */
    private $placements;
}

所以,你可以看到这种关系:Block< OneToMany>放置< ManyToOne>位置。

现在我正在尝试构建一个表单来创建/编辑一个块:

    $builder
        ->add($builder->create('placements', 'entity', [
            'class' => 'Zikula\BlocksModule\Entity\BlockPositionEntity',
            'choice_label' => 'name',
            'multiple' => true,
            'required' => false
        ]))
    ;

这给了我一个很好的选择框,可以选择多个位置的正确列表。但它没有显示之前的展示位置选择(我使用现有数据),例如将位置标记为“已选择”。我还没有尝试创建新的Block,只编辑现有数据。

我怀疑我需要使用addModelTransformer()addViewTransformer(),但尝试了其中的一部分无法让它发挥作用。

我查看了collection表单类型,我不喜欢这种解决方案,因为它不是一个多选框。它需要JS,并不像简单的select元素那样直观。

对于人们来说,这似乎是一个普遍的问题。我搜索过,发现没有共同的答案,没有任何帮助。

2 个答案:

答案 0 :(得分:1)

更新:请查看此example repo

更新2:我已更新了回购邮件。

我使用表单事件侦听器和未映射的选择字段来完成它。 仔细看看BlockType form type 随意提出任何问题。

答案 1 :(得分:0)

好的 - 所以最后,我发现了一种不同的方式。 @Stepan Yudin的答案很有效,但很复杂(听众等),并不像我希望的那样。

所以,我有三个相同的实体。 BlockPlacement和BlockPosition保持不变(因此不会重新发布,见上文)但我对BlockEntity进行了一些更改:

class BlockEntity
{
    private $bid;
    /**
     * @ORM\OneToMany(
     *     targetEntity="BlockPlacementEntity",
     *     mappedBy="block",
     *     cascade={"remove", "persist"},
     *     orphanRemoval=true)
     */
    private $placements;

    /**
     * Get an ArrayCollection of BlockPositionEntity that are assigned to this Block
     * @return ArrayCollection
     */
    public function getPositions()
    {
        $positions = new ArrayCollection();
        foreach($this->getPlacements() as $placement) {
            $positions->add($placement->getPosition());
        }

        return $positions;
    }

    /**
     * Set BlockPlacementsEntity from provided ArrayCollection of positionEntity
     * requires
     *   cascade={"remove, "persist"}
     *   orphanRemoval=true
     *   on the association of $this->placements
     * @param ArrayCollection $positions
     */
    public function setPositions(ArrayCollection $positions)
    {
        // remove placements and skip existing placements.
        foreach ($this->placements as $placement) {
            if (!$positions->contains($placement->getPosition())) {
                $this->placements->removeElement($placement);
            } else {
                $positions->removeElement($placement->getPosition()); // remove from positions to add.
            }
        }

        // add new placements
        foreach ($positions as $position) {
            $placement = new BlockPlacementEntity();
            $placement->setPosition($position);
            // sortorder is irrelevant at this stage.
            $placement->setBlock($this); // auto-adds placement
        }
    }
}

因此,您可以看到BlockEntity现在正在处理实体中根本不存在的positions参数。以下是相关的表单组件:

$builder
    ->add('positions', 'Symfony\Bridge\Doctrine\Form\Type\EntityType', [
        'class' => 'Zikula\BlocksModule\Entity\BlockPositionEntity',
        'choice_label' => 'name',
        'multiple' => true,
    ])

请注意,自从我的第一篇文章

以来,我已更改为Symfony 2.8表单样式

这将在页面上呈现一个多重选择元素,该元素接受任意数量的位置,并在提交时将它们转换为ArrayCollection。然后由表单的get / set位置方法直接处理,这些方法转换为/来自placement属性。 cascadeorphanRemoval非常重要,因为它们会照顾“清理”剩余的实体。

因为上面引用的是BlockPlacement setBlock($block)方法:

public function setBlock(BlockEntity $block = null)
{
    if ($this->block !== null) {
        $this->block->removePlacement($this);
    }

    if ($block !== null) {
        $block->addPlacement($this);
    }

    $this->block = $block;

    return $this;
}