0

我有 3 个实体 用户

class User extends BaseUser
{    
    /**
     * @ORM\OneToMany(targetEntity="UserPathologie", mappedBy="user")
     */ 
    protected $userPathologies;
}

病理学

class Pathologie
{
    /**
     * @var string
     *
     * @ORM\Column(name="nom", type="string", length=255)
     */
    private $nom;

    /**
     * @ORM\OneToMany(targetEntity="UserPathologie", mappedBy="pathologie")
     */ 
    protected $userPathologies;
}

用户病理学

class UserPathologie
{
    /**
     * @ORM\ManyToOne(targetEntity="User", inversedBy="userPathologies")
     */
    protected $user;

    /**
     * @ORM\ManyToOne(targetEntity="Pathologie", inversedBy="userPathologies")
     */ 
    protected $pathologie;

     /**
     * @var boolean
     *
     * @ORM\Column(name="atteint", type="boolean")
     */
    private $atteint;

    /**
     * @var string
     *
     * @ORM\Column(name="cause", type="text")
     */
    private $cause;

}

然后,在用户表单上,我想要所有“病理”的列表,其中包含复选框“atteint”和 textarea“cause”。

前任:

--label-- 病理学 --/label--

病理学 A:是/否 - Textarea 原因

病理学 B:是/否 - Textarea 原因

Pathologie C:是/否 - Textarea 原因

Pathologie D:是/否 - Textarea 原因

Pathologie E:是/否 - Textarea 原因

我像下面这样继续,但不方便的是每一行都应该用javascript动态添加,并且“病理学”在一个选择字段中。

在 UserRegiterType

public function buildForm(FormBuilderInterface $builder, array $options)
{   

    $builder
        ->add('userPathologies', 'collection', array(
            'type' => new UserPathologieType(), 
            'label' => false, 
            'allow_add' => true,
        ));
}

在 UserPathologieType 中,我有

public function buildForm(FormBuilderInterface $builder, array $options)
{   

    $builder        
        ->add('pathologie')
        ->add('atteint', 'checkbox', array(
            'label' => false,
            'required' => false, 
        ))
        ->add('cause', 'textarea', array(
            'label' => 'Cause', 
            'required' => false, 
        ));
}
4

2 回答 2

2

避免patologies在选择字段中覆盖该字段的小部件

{% block pathologie_widget %}
    <b>{{ value }}</b>
{% endblock %}

有关主题的详细信息,请参阅http://symfony.com/doc/current/book/forms.html#form-theming

或者根据您呈现集合的方式,您也可以采用这种方式: Symfony2 formbuilder - entity readonly field as label

要将所有病理连接到新用户,只需将它们添加__constructUser

public function __construct() {

   // get all phatologies

   foreach ($allPhatologies as UserPathologie) {
       $this->userPathologies->add(new UserPathologie());
   }

}
于 2014-10-01T10:02:10.860 回答
0

这就是我如何让它工作

首先添加cascade={"persist"}到 User 中的 OneToMany 关系以自动保留用户病理

Class User
{
    /**
     * @ORM\OneToMany(targetEntity="Myapp\UserBundle\Entity\UserPathologie", mappedBy="user", cascade={"persist"})
     */ 
    protected $userPathologies;
}

然后,按照@Hpatoio 的建议将所有病理添加到新实体中

private function createRegisterForm(User $entity)
{
    $em = $this->getDoctrine()->getManager();
    $pathologies =  $em->getRepository("MyappUserBundle:Pathologie")->findAll();

    //Loop all pathologies
    foreach($pathologies as $patho) {
        $up = new UserPathologie();
        $up->setPathologie($patho);
        $up->setUser($entity);
        $up->setAtteint(false);

        //Add each pathologie to the User entity
        $entity->getUserPathologies()->add($up);
    }

    $form = $this->createForm(new UserRegisterType(), $entity, array(
        'action' => $this->generateUrl('register_user'),
        'method' => 'POST',
    ));

    return $form;
}

在树枝模板中,我再次使用循环来获得预期的结果

{% for up in form.userPathologies%}
    <input type="hidden" name="{{ up.pathologie.vars.full_name }}" id="{{ up.pathologie.vars.id }}" value="{{ up.pathologie.vars.value }}" />
    <p class="line"><label>{{ up.vars.value.pathologie }}</label>{{ form_widget(up.atteint) }}</p>
    <p class="line">{{ form_row(up.cause) }}</p>
{% endfor %}
于 2014-10-03T05:46:00.687 回答