我有一个名为“活动”的实体,它定义了另外两个实体之间的关系,“服务”和“服务”。和'位置'。
两者'服务'和'位置',使用另一个名为“分配'”的实体来定义可以在具体位置使用的服务。
当我创建一个新的Activity时,在选择一个服务之后,我想让location choice字段用分配定义的值更新。
我已经按照symfony文档创建了这个位置'表格中的从属选择字段。
一切都适用于创建/新表单,但是当我尝试在已创建的活动中编辑服务字段值时,位置字段不会更新,并且symfony探查器会显示以下消息:
未捕获的PHP异常Symfony \ Component \ PropertyAccess \ Exception \ InvalidArgumentException:"类型" AppBundle \ Entity \ Location"," NULL"的预期参数;给定"在F:\ xampp \ htdocs \ gcd \ vendor \ symfony \ symfony \ src \ Symfony \ Component \ PropertyAccess \ PropertyAccessor.php第253行上下文:{" exception":" Object(Symfony \ Component) \ PropertyAccess \异常\ 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>
任何帮助都会很棒,谢谢。
答案 0 :(得分:1)
我遇到了类似的问题,我找到了一个解决方案:Symfony - dynamic drop down lists not working only when editing
答案 1 :(得分:0)
我也遇到过类似的问题,在跟踪时发现,其他下拉菜单中的EntityType类在编辑表单时导致了问题
解决方案是通过ajax提交完整表单,而不是像新表单一样仅提交一个字段。
所以改变
var data = {};
data[$service.attr('name')] = $service.val();
收件人
var data = $form.serializeArray()
这应该可以解决问题。