首页 文章

Symfony 2:Dynamic Form Event仅在编辑时返回InvalidArgumentException

提问于
浏览
0

我得到了一个名为“活动”的实体,它定义了另外两个实体之间的关系,“服务”和“位置” .

“服务”和“位置”都使用另一个名为“分配”的实体来定义可以在具体位置使用的服务 .

当我创建一个新的Activity时,在选择一个服务之后,我希望使用由allocation定义的值更新位置选择字段 .

我已经按照symfony文档在表单中创建了这个“位置”相关的选择字段 .

Dynamic Form Modification

所有在创建/新表单上都很好用,但是当我尝试在已创建的Activity中编辑服务字段值时,location字段不会更新,symfony profiler会显示以下消息:

未捕获的PHP异常Symfony \ Component \ PropertyAccess \ Exception \ InvalidArgumentException:"Expected argument of type " AppBundle \ Entity \ Location ", " NULL " given" at F:\ xampp \ htdocs \ gcd \ vendor \ symfony \ symfony \ src \ Symfony \ Component \ PropertyAccess \ PropertyAccessor.php line 253上下文:{"exception":"Object(Symfony\Component\PropertyAccess\Exception\InvalidArgumentException)"}

这是我的活动实体的一部分

/**
 * Activity
 *
 * @ORM\Table(name="activity")
 * @ORM\Entity(repositoryClass="AppBundle\Repository\ActivityRepository")
 */
class Activity
{
    /**
     * @var int
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @var Service
     *
     * @ORM\ManyToOne(targetEntity="Service", fetch="EAGER")
     * @ORM\JoinColumn(name="service_id", referencedColumnName="id", nullable=false)
     */
    private $service;

    /**
     * @var Location
     *
     * @ORM\ManyToOne(targetEntity="Location", fetch="EAGER")
     * @ORM\JoinColumn(name="location_id", referencedColumnName="id", nullable=false)
     */
    private $location;

我的控制器 .

/**
 * Creates a new Activity entity.
 *
 * @Route("/new", name="core_admin_activity_new")
 * @Method({"GET", "POST"})
 */
public function newAction(Request $request)
{
    $activity = new Activity();
    $form = $this->createForm('AppBundle\Form\ActivityType', $activity);
    $form->handleRequest($request);

    if($form->isSubmitted() && $form->isValid()){

        $locationAvailable = $this->isLocationAvailable($activity);
        $activityOverlap = $this->hasOverlap($activity);

        if($locationAvailable && !$activityOverlap){
            $em = $this->getDoctrine()->getManager();
            $em->persist($activity);
            $em->flush();

            return $this->redirectToRoute('core_admin_activity_show', array('id' => $activity->getId()));
        }
    }

    return $this->render('activity/new.html.twig', array(
        'activity' => $activity,
        'form' => $form->createView(),
    ));
}


/**
 * Displays a form to edit an existing Activity entity.
 *
 * @Route("/{id}/edit", name="core_admin_activity_edit")
 * @Method({"GET", "POST"})
 */
public function editAction(Request $request, Activity $activity)
{
    $deleteForm = $this->createDeleteForm($activity);
    $editForm = $this->createForm('AppBundle\Form\ActivityType', $activity);
    $editForm->handleRequest($request);

    if ($editForm->isSubmitted() && $editForm->isValid()) {

        $locationAvailable = $this->isLocationAvailable($activity);
        $activityOverlap = $this->hasOverlap($activity);

        if($locationAvailable && !$activityOverlap){
            $em = $this->getDoctrine()->getManager();
            $em->persist($activity);
            $em->flush();

            return $this->redirectToRoute('core_admin_activity_show', array('id' => $activity->getId()));
        }
    }

    return $this->render('activity/edit.html.twig', array(
        'activity' => $activity,
        'edit_form' => $editForm->createView(),
        'delete_form' => $deleteForm->createView(),
    ));
}

我的FormType

class ActivityType extends AbstractType

{

private $em;

public function __construct(EntityManager $entityManager)
{
    $this->em = $entityManager;
}

/**
 * @param FormBuilderInterface $builder
 * @param array $options
 */
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $builder
        ->add('service', EntityType::class, array(
            'class' => 'AppBundle:Service',
            'placeholder' => 'elige servicio',
        ))
        ->add('location', EntityType::class, array(
            'class' => 'AppBundle:Location',
            'choices' => array(),
                    ))
        ->add('name')
        ->add('virtual')
        ->add('customerSeats')
        ->add('customerVacants')
        ->add('employeeSeats')
        ->add('firstDate', 'date')
        ->add('lastDate', 'date')
        ->add('weekday')
        ->add('beginTime', 'time')
        ->add('endTime', 'time')
        ->add('admissionType')
        ->add('status');



    $formModifier = function (FormInterface $form, Service $service = null) {
        $locations = null === $service ? array() : $this->em->getRepository('AppBundle:Allocation')->findLocationsByService($service);

        $form->add('location', EntityType::class, array(
            'class' => 'AppBundle:Location',
            'choices' => $locations,
        ));
    };


    $builder->addEventListener(
        FormEvents::PRE_SET_DATA,
        function (FormEvent $event) use ($formModifier) {
            $data = $event->getData();
            $formModifier($event->getForm(), $data->getService());
        }
    );

    $builder->get('service')->addEventListener(
        FormEvents::POST_SUBMIT,
        function (FormEvent $event) use ($formModifier) {
            // It's important here to fetch $event->getForm()->getData(), as
            // $event->getData() will get you the client data (that is, the ID)
            $service = $event->getForm()->getData();

            // since we've added the listener to the child, we'll have to pass on
            // the parent to the callback functions!
            $formModifier($event->getForm()->getParent(), $service);
        }
    );
}

/**
 * @param OptionsResolver $resolver
 */
public function configureOptions(OptionsResolver $resolver)
{
    $resolver->setDefaults(array(
        'data_class' => 'AppBundle\Entity\Activity'
    ));
}

}

javaScript函数

<script>
    var $service = $('#activity_service');
    // When sport gets selected ...
    $service.change(function() {
        // ... retrieve the corresponding form.
        var $form = $(this).closest('form');
        // Simulate form data, but only include the selected service value.
        var data = {};
        data[$service.attr('name')] = $service.val();
        // Submit data via AJAX to the form's action path.
        $.ajax({
            url : $form.attr('action'),
            type: $form.attr('method'),
            data : data,
            success: function(html) {
                // Replace current position field ...
                $('#activity_location').replaceWith(
                        // ... with the returned one from the AJAX response.
                        $(html).find('#activity_location')
                );
            }
        });
    });
</script>

任何帮助都会很棒,谢谢 .

2 回答

  • 0

    我也遇到过类似的问题,并且在跟踪时发现在编辑表单时导致问题的是其他下拉列表中的EntityType类

    解决方案是通过ajax提交完整表单,而不是像新表单一样只提交一个字段 .

    所以改变

    var data = {};
    data[$service.attr('name')] = $service.val();
    

    var data = $form.serializeArray()
    

    这应该解决问题 .

  • 1

    我有类似的问题,我找到了解决方案:Symfony - dynamic drop down lists not working only when editing

相关问题